GetObjectPropertyValue
From Onset Developer Wiki
Description
Gets a property value for this entity.
Syntax
GetObjectPropertyValue(object, PropertyName)
Parameters
- object
The object identifier - PropertyName
Name of the property variable
Return Value
- Returns the value.
Example
Server
function OnPackageStart()
local object = CreateObject(1, 0.0, 0.0, 0.0)
SetObjectPropertyValue(object, "testValue", "Some test value string")
end
AddEvent("OnPackageStart", OnPackageStart)
Client
AddEvent("OnObjectStreamIn", function(object)
AddPlayerChat("Value: "..GetObjectPropertyValue(object, "testValue"))
end)
See also
- SetObjectDimension
- GetObjectDimension
- SetObjectPropertyValue
- GetObjectPropertyValue
- CreateObject
- DestroyObject
- IsValidObject
- GetObjectCount
- SetObjectModel
- GetObjectModel
- IsObjectStreamedIn
- EnableObjectStreamEvents
- SetObjectStreamDistance
- SetObjectLocation
- GetObjectLocation
- SetObjectRotation
- GetObjectRotation
- SetObjectScale
- GetObjectScale
- SetObjectAttached
- SetObjectDetached
- IsObjectAttached
- GetObjectAttachmentInfo
- IsObjectMoving
- SetObjectMoveTo
- StopObjectMove
- SetObjectRotateAxis
- GetAllObjects