wiki.sine.space | sinespace

Difference between revisions of "Scripting/SScriptingData"

From wiki.sine.space
Jump to: navigation, search
(Created page with "=Members= {{ScriptFunction|bool|Enabled|{get; set;}|Return if the ScriptingData component is Enabled or not|5=local thisObject=Space.Host.ExecutingObject<br> local thisObject...")
 
Line 1: Line 1:
 +
Composts of ScriptingData class.
 
=Members=
 
=Members=
  
Line 26: Line 27:
 
end
 
end
 
}}
 
}}
 +
 +
{{Scripting Navbox}}

Revision as of 09:58, 23 December 2020

Composts of ScriptingData class.

Members

Enabled

bool Enabled {get; set;}

Return if the ScriptingData component is Enabled or not

local thisObject=Space.Host.ExecutingObject

local thisObjectData=thisObject.Data

Space.Log(thisObjectData.Enabled)


Variables

string Variables {get;}

Return a list of variables.

local thisObject=Space.Host.ExecutingObject.

local thisObjectVariable=thisObject.Data.Variables
for i=1, #thisObjectVariable do
    Space.Log(thisObjectVariable[i])

end



Properties

SetVariable

void SetVariable {string name, DynValue property;}

Set properties to variable.

local thisObject=Space.Host.ExecutingObject.

thisObjectData.SetVariable(no1Name,"no1",false)

Space.Log(no1)


GetVariable

object GetVariable {string name;}

Return the object of the variable.

local thisObject=Space.Host.ExecutingObject.

local thisObjectVariable=thisObject.Data.Variables
for i=1, #thisObjectVariable do
    Space.Log(thisObjectVariable[i])

end