Kategorie: System
Ab Engineversion: 5.3 OC
SaveScenarioObjectAction
Beschreibung
Stores object action and phase for Objects.c scenario saving (See Scenario objects saving).
Syntax
bool SaveScenarioObjectAction(proplist props);
Parameter
- props:
- Handle to proplist for storage of this object.
Beispiel
func SaveScenarioObject(props)
{
if (!inherited(props, ...)) return false;
if (!ActIdle())SaveScenarioObjectAction(props);
return false;
}
In addition to default properties, this object also saved its current action unless it is idle.
Siehe auch: Scenario objects saving


