----------------------------------------------------------------------------- Add a list selection item ValueID/value pair to the scene (as string) -----------------------------------------------------------------------------
| 4734 | // Add a list selection item ValueID/value pair to the scene (as string) |
| 4735 | //----------------------------------------------------------------------------- |
| 4736 | bool Manager::AddSceneValueListSelection |
| 4737 | ( |
| 4738 | uint8 const _sceneId, |
| 4739 | ValueID const& _valueId, |
| 4740 | string const& _value |
| 4741 | ) |
| 4742 | { |
| 4743 | Scene *scene = Scene::Get( _sceneId ); |
| 4744 | if( scene != NULL ) |
| 4745 | { |
| 4746 | return scene->AddValue( _valueId, _value ); |
| 4747 | } |
| 4748 | return false; |
| 4749 | } |
| 4750 | |
| 4751 | //----------------------------------------------------------------------------- |
| 4752 | // <Manager::AddSceneValueListSelection> |