[][src]Struct yy_typings::object_yy::ObjectProperty

pub struct ObjectProperty {
    pub var_type: ObjectPropertyTypes,
    pub value: String,
    pub range_enabled: bool,
    pub range_min: f64,
    pub range_max: f64,
    pub list_items: Vec<String>,
    pub multiselect: bool,
    pub filters: [(); 0],
    pub resource_version: ResourceVersion,
    pub name: String,
    pub tags: Tags,
    pub resource_type: ConstGmObjectProperty,
}

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

var_type: ObjectPropertyTypes

The type of property which is preset. Some, or all, of the rest of the information in this struct will be used based on the property type.

value: String

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

range_enabled: bool

If the range Ui option is enabled for this type. This is ignored unless var_type is Real or Integer.

range_min: f64

The minimum range. Minimin should be less than max, but does not error if so.

range_max: f64

The maximum range. Minimin should be less than max, but does not error if so.

list_items: Vec<String>

The items which can be selected when var_type is set to List. Ignored in any other var_type.

multiselect: bool

If set to true when var_type is set to List, allows the User to select multiple options.

filters: [(); 0]

Not sure what this is supposed to be. In the meantime, we've typed it as a blank array.

resource_version: ResourceVersion

The ResourceVersion, default value.

name: String

The name of the property, such as "room_to_transition_to".

tags: Tags

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

resource_type: ConstGmObjectProperty

The resource type const of the property.

Trait Implementations

impl Clone for ObjectProperty[src]

impl Debug for ObjectProperty[src]

impl Default for ObjectProperty[src]

fn default() -> Self[src]

Return ObjectProperty { var_type: Default::default(), value: Default::default(), range_enabled: Default::default(), range_min: Default::default(), range_max: Default::default(), list_items: Default::default(), multiselect: Default::default(), filters: Default::default(), resource_version: Default::default(), name: Default::default(), tags: Default::default(), resource_type: Default::default() }

impl<'de> Deserialize<'de> for ObjectProperty[src]

impl PartialEq<ObjectProperty> for ObjectProperty[src]

impl PartialOrd<ObjectProperty> for ObjectProperty[src]

impl Serialize for ObjectProperty[src]

impl StructuralPartialEq for ObjectProperty[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,