----------------------------------------------------------------------------- Create the values managed by this command class -----------------------------------------------------------------------------
| 158 | // Create the values managed by this command class |
| 159 | //----------------------------------------------------------------------------- |
| 160 | void SceneActivation::CreateVars |
| 161 | ( |
| 162 | uint8 const _instance |
| 163 | ) |
| 164 | { |
| 165 | if( Node* node = GetNodeUnsafe() ) |
| 166 | { |
| 167 | node->CreateValueInt( ValueID::ValueGenre_User, GetCommandClassId(), _instance, SceneActivationIndex_SceneID, "Scene", "", true, false, 0, 0 ); |
| 168 | node->CreateValueInt( ValueID::ValueGenre_User, GetCommandClassId(), _instance, SceneActivationIndex_Duration, "Duration", "", true, false, 0, 0 ); |
| 169 | } |
| 170 | } |
nothing calls this directly
no test coverage detected