Class LayersAndTagsSettings
Layers and objects tags settings.
Inherited Members
LayersAndTagsSettings
LayersAndTagsSettings
LayersAndTagsSettings
Assembly: FlaxEngine.dll
File: Engine/Core/Config/LayersTagsSettings.h
Syntax
public class LayersAndTagsSettings : public SettingsBase
Fields
Layers
Tags
The tag names.
Declaration
public Array<String> Tags
Field Value
Array<String>
|
Methods
Apply()
Applies the settings to the target system.
Declaration
public virtual void Apply() override
Overrides
Deserialize(DeserializeStream& stream, ISerializeModifier* modifier)
Deserializes object from the input stream.
Declaration
public virtual void Deserialize(DeserializeStream& stream, ISerializeModifier* modifier) final override
Parameters
DeserializeStream
stream
The input stream. |
ISerializeModifier
modifier
The deserialization modifier object. Always valid. |
Overrides
Get()
Gets the instance of the settings asset (default value if missing). Object returned by this method is always loaded with valid data to use.
Declaration
public static LayersAndTagsSettings* Get()
Returns
LayersAndTagsSettings
|
Serialize(SerializeStream& stream, const void* otherObj)
Serializes object to the output stream compared to the values of the other object instance (eg. default class object). If other object is null then serialize all properties.
Declaration
public virtual void Serialize(SerializeStream& stream, const void* otherObj) override
Parameters
SerializeStream
stream
The output stream. |
void
otherObj
The instance of the object to compare with and serialize only the modified properties. If null, then serialize all properties. |