----------------------------------------------------------------------------- Return a scene's label -----------------------------------------------------------------------------
| 5161 | // Return a scene's label |
| 5162 | //----------------------------------------------------------------------------- |
| 5163 | string Manager::GetSceneLabel |
| 5164 | ( |
| 5165 | uint8 const _sceneId |
| 5166 | ) |
| 5167 | { |
| 5168 | Scene *scene = Scene::Get( _sceneId ); |
| 5169 | if( scene != NULL ) |
| 5170 | { |
| 5171 | return scene->GetLabel(); |
| 5172 | } |
| 5173 | return NULL; |
| 5174 | } |
| 5175 | |
| 5176 | //----------------------------------------------------------------------------- |
| 5177 | // <Manager::SetSceneLabel> |