Struct yy_typings::object_yy::ObjectOverrideProperty[][src]

pub struct ObjectOverrideProperty {
    pub property_id: FilesystemPath,
    pub object_id: FilesystemPath,
    pub value: String,
    pub resource_version: ResourceVersion,
    pub name: String,
    pub tags: Tags,
    pub resource_type: ConstGmObjectOverrideProperty,
}
Expand description

Object “properties” are set in the Gms2 window and allow the user to override those properties either in child objects of a parent, or in the Room (or both!). This allows for simple customization in the room editor.

Fields

property_id: FilesystemPath

This is not a real filesystem path, but instead just looks like one. Eventually, this will receive better typing. @todo The name is the name of the prperty, and the path is to the ORIGINATOR of the property.

object_id: FilesystemPath

The path to the object which this property last overrides.

value: String

The serialized value of the property type. This corresponds exactly to what the Gms2 box will have inside it as a string.

resource_version: ResourceVersion

The resource version for this property override

name: String

The name of the property, which appears to always be an empty string.

tags: Tags

The tags assigned to the property. Probably shouldn’t be assigned.

resource_type: ConstGmObjectOverrideProperty

The resource type const of the property.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Return ObjectOverrideProperty { property_id: Default::default(), object_id: Default::default(), value: Default::default(), resource_version: Default::default(), name: Default::default(), tags: Default::default(), resource_type: Default::default() }

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.