Enum UdonMetaAttributeType
- Namespace
- JLChnToZ.VRC.Foundation
Defines the type of metadata that can be assigned to a UdonSharp field.
public enum UdonMetaAttributeType
- Extension Methods
Fields
BuiltTimeStamp = 5This will set the field to the build time of current scene.
NetworkID = 0This will set the field to the network ID of the current game object.
This field must be an
inttype. This value is not accurate if current object is instaniated (cloned) in runtime, including use of global::VRC.SDK3.Components.VRCPlayerObject.NetworkSyncMode = 4It will sets the field to correponding integer value of sync mode of current object.
This field must be a int type. The value is one of the integer value in global::VRC.SDKBase.Networking.SyncType.
NetworkSyncModeContinuous = 2It will sets the field to
trueif current object is set to be continuously (auto) synced over network.This field must be a bool type.
NetworkSyncModeManual = 3It will sets the field to
trueif current object is set to be manually synced over network.This field must be a bool type.
NetworkSyncModeNone = 1It will sets the field to
trueif current object is set to not be synced over network.This field must be a bool type.
WorldBlueprintID = 6This will set the field to the world blueprint ID of current scene.
This field must be a string type.