Category: System
Since engine version: 5.3 OC
SaveScenarioObjectAction
Description
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.
Example
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.
See also: Scenario objects saving


