C# Class OpenMetaverse.Messages.Linden.UpdateScriptTaskUpdateMessage

A message sent from the viewer to the simulator requesting the update of an existing script contained within a tasks inventory
Inheritance: AssetUploaderBlock
ファイルを表示 Open project: N3X15/VoxelSim Class Usage Examples

Public Properties

Property Type Description
ItemID UUID
ScriptRunning bool
Target string
TaskID UUID

Public Methods

Method Description
Deserialize ( OSDMap map ) : void

Deserialize the message

Serialize ( ) : OSDMap

Serialize the object

Method Details

Deserialize() public method

Deserialize the message
public Deserialize ( OSDMap map ) : void
map OSDMap An containing the data
return void

Serialize() public method

Serialize the object
public Serialize ( ) : OSDMap
return OSDMap

Property Details

ItemID public_oe property

The scripts InventoryItem ItemID to update
public UUID ItemID
return UUID

ScriptRunning public_oe property

if true, set the script mode to running
public bool ScriptRunning
return bool

Target public_oe property

A lowercase string containing either "mono" or "lsl2" which specifies the script is compiled and ran on the mono runtime, or the older lsl runtime
public string Target
return string

TaskID public_oe property

The tasks UUID which contains the script to update
public UUID TaskID
return UUID