Search Results for

    Show / Hide Table of Contents

    Class PropertySetRuntime

    The object containing an instance of PropertySet<TProperty, TValue> used by Agent and UtilityAction This class provides quick access to Property Set, Set and Add.

    Inheritance
    Object
    PropertySetRuntime
    Inherited Members
    Object.ToString()
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.ReferenceEquals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Namespace: TinnyStudios.AIUtility.Core.Properties
    Assembly: UtilityAIFramework.dll
    Syntax
    [Serializable]
    public class PropertySetRuntime

    Fields

    Clone

    Declaration
    public bool Clone
    Field Value
    Type Description
    Boolean

    Original

    Declaration
    public PropertySetAsset Original
    Field Value
    Type Description
    PropertySetAsset

    Properties

    Initialized

    Declaration
    public bool Initialized { get; }
    Property Value
    Type Description
    Boolean

    Methods

    GetInstance()

    Declaration
    public PropertySetAsset GetInstance()
    Returns
    Type Description
    PropertySetAsset

    Initialize()

    Declaration
    public void Initialize()

    Set(String, Boolean)

    Declaration
    public void Set(string key, bool value)
    Parameters
    Type Name Description
    String key
    Boolean value

    Set(String, Int32)

    Declaration
    public void Set(string key, int value)
    Parameters
    Type Name Description
    String key
    Int32 value

    Set(String, Single)

    Declaration
    public void Set(string key, float value)
    Parameters
    Type Name Description
    String key
    Single value

    Set(String, Transform)

    Declaration
    public void Set(string key, Transform value)
    Parameters
    Type Name Description
    String key
    Transform value

    Set(String, Vector3)

    Declaration
    public void Set(string key, Vector3 value)
    Parameters
    Type Name Description
    String key
    Vector3 value

    TryAdd(String, Boolean)

    Declaration
    public bool TryAdd(string key, bool value)
    Parameters
    Type Name Description
    String key
    Boolean value
    Returns
    Type Description
    Boolean

    TryAdd(String, Int32)

    Declaration
    public bool TryAdd(string key, int value)
    Parameters
    Type Name Description
    String key
    Int32 value
    Returns
    Type Description
    Boolean

    TryAdd(String, Single)

    Declaration
    public bool TryAdd(string key, float value)
    Parameters
    Type Name Description
    String key
    Single value
    Returns
    Type Description
    Boolean

    TryAdd(String, Transform)

    Declaration
    public bool TryAdd(string key, Transform value)
    Parameters
    Type Name Description
    String key
    Transform value
    Returns
    Type Description
    Boolean

    TryAdd(String, Vector3)

    Declaration
    public bool TryAdd(string key, Vector3 value)
    Parameters
    Type Name Description
    String key
    Vector3 value
    Returns
    Type Description
    Boolean

    TryGet(String, out Boolean)

    Declaration
    public bool TryGet(string key, out bool value)
    Parameters
    Type Name Description
    String key
    Boolean value
    Returns
    Type Description
    Boolean

    TryGet(String, out Int32)

    Declaration
    public bool TryGet(string key, out int value)
    Parameters
    Type Name Description
    String key
    Int32 value
    Returns
    Type Description
    Boolean

    TryGet(String, out Single)

    Declaration
    public bool TryGet(string key, out float value)
    Parameters
    Type Name Description
    String key
    Single value
    Returns
    Type Description
    Boolean

    TryGet(String, out Transform)

    Declaration
    public bool TryGet(string key, out Transform value)
    Parameters
    Type Name Description
    String key
    Transform value
    Returns
    Type Description
    Boolean

    TryGet(String, out Vector3)

    Declaration
    public bool TryGet(string key, out Vector3 value)
    Parameters
    Type Name Description
    String key
    Vector3 value
    Returns
    Type Description
    Boolean
    In This Article
    Back to top Generated by DocFX