Search Results for

    Show / Hide Table of Contents

    Class EntityGroup

    Inheritance
    object
    Object
    ScriptableObject
    EntityGroup
    Implements
    ISet<Entity>
    ICollection<Entity>
    IEnumerable<Entity>
    IEnumerable
    Inherited Members
    ScriptableObject.SetDirty()
    ScriptableObject.CreateInstance(string)
    ScriptableObject.CreateInstance(Type)
    ScriptableObject.CreateInstance<T>()
    Object.GetInstanceID()
    Object.GetHashCode()
    Object.Equals(object)
    Object.Instantiate(Object, Vector3, Quaternion)
    Object.Instantiate(Object, Vector3, Quaternion, Transform)
    Object.Instantiate(Object)
    Object.Instantiate(Object, Transform)
    Object.Instantiate(Object, Transform, bool)
    Object.Instantiate<T>(T)
    Object.Instantiate<T>(T, Vector3, Quaternion)
    Object.Instantiate<T>(T, Vector3, Quaternion, Transform)
    Object.Instantiate<T>(T, Transform)
    Object.Instantiate<T>(T, Transform, bool)
    Object.Destroy(Object, float)
    Object.Destroy(Object)
    Object.DestroyImmediate(Object, bool)
    Object.DestroyImmediate(Object)
    Object.FindObjectsOfType(Type)
    Object.FindObjectsOfType(Type, bool)
    Object.FindObjectsByType(Type, FindObjectsSortMode)
    Object.FindObjectsByType(Type, FindObjectsInactive, FindObjectsSortMode)
    Object.DontDestroyOnLoad(Object)
    Object.DestroyObject(Object, float)
    Object.DestroyObject(Object)
    Object.FindSceneObjectsOfType(Type)
    Object.FindObjectsOfTypeIncludingAssets(Type)
    Object.FindObjectsOfType<T>()
    Object.FindObjectsByType<T>(FindObjectsSortMode)
    Object.FindObjectsOfType<T>(bool)
    Object.FindObjectsByType<T>(FindObjectsInactive, FindObjectsSortMode)
    Object.FindObjectOfType<T>()
    Object.FindObjectOfType<T>(bool)
    Object.FindFirstObjectByType<T>()
    Object.FindAnyObjectByType<T>()
    Object.FindFirstObjectByType<T>(FindObjectsInactive)
    Object.FindAnyObjectByType<T>(FindObjectsInactive)
    Object.FindObjectsOfTypeAll(Type)
    Object.FindObjectOfType(Type)
    Object.FindFirstObjectByType(Type)
    Object.FindAnyObjectByType(Type)
    Object.FindObjectOfType(Type, bool)
    Object.FindFirstObjectByType(Type, FindObjectsInactive)
    Object.FindAnyObjectByType(Type, FindObjectsInactive)
    Object.ToString()
    Object.name
    Object.hideFlags
    object.Equals(object, object)
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    Namespace: LobsterFramework
    Assembly: LobsterFramework.dll
    Syntax
    [CreateAssetMenu(menuName = "Groups/Entity Group")]
    public class EntityGroup : ScriptableObject, ISet<Entity>, ICollection<Entity>, IEnumerable<Entity>, IEnumerable

    Fields

    | Improve this Doc View Source

    OnEntityAdded

    Declaration
    public Action<Entity> OnEntityAdded
    Field Value
    Type Description
    Action<Entity>
    | Improve this Doc View Source

    OnEntityRemoved

    Declaration
    public Action<Entity> OnEntityRemoved
    Field Value
    Type Description
    Action<Entity>

    Properties

    | Improve this Doc View Source

    Count

    Declaration
    public int Count { get; }
    Property Value
    Type Description
    int
    | Improve this Doc View Source

    IsReadOnly

    Declaration
    public bool IsReadOnly { get; }
    Property Value
    Type Description
    bool

    Methods

    | Improve this Doc View Source

    Add(Entity)

    Declaration
    public bool Add(Entity item)
    Parameters
    Type Name Description
    Entity item
    Returns
    Type Description
    bool
    | Improve this Doc View Source

    Clear()

    Declaration
    public void Clear()
    | Improve this Doc View Source

    Contains(Entity)

    Declaration
    public bool Contains(Entity item)
    Parameters
    Type Name Description
    Entity item
    Returns
    Type Description
    bool
    | Improve this Doc View Source

    CopyTo(Entity[], int)

    Declaration
    public void CopyTo(Entity[] array, int arrayIndex)
    Parameters
    Type Name Description
    Entity[] array
    int arrayIndex
    | Improve this Doc View Source

    ExceptWith(IEnumerable<Entity>)

    Declaration
    public void ExceptWith(IEnumerable<Entity> other)
    Parameters
    Type Name Description
    IEnumerable<Entity> other
    | Improve this Doc View Source

    GetEnumerator()

    Declaration
    public IEnumerator<Entity> GetEnumerator()
    Returns
    Type Description
    IEnumerator<Entity>
    | Improve this Doc View Source

    IntersectWith(IEnumerable<Entity>)

    Declaration
    public void IntersectWith(IEnumerable<Entity> other)
    Parameters
    Type Name Description
    IEnumerable<Entity> other
    | Improve this Doc View Source

    IsProperSubsetOf(IEnumerable<Entity>)

    Declaration
    public bool IsProperSubsetOf(IEnumerable<Entity> other)
    Parameters
    Type Name Description
    IEnumerable<Entity> other
    Returns
    Type Description
    bool
    | Improve this Doc View Source

    IsProperSupersetOf(IEnumerable<Entity>)

    Declaration
    public bool IsProperSupersetOf(IEnumerable<Entity> other)
    Parameters
    Type Name Description
    IEnumerable<Entity> other
    Returns
    Type Description
    bool
    | Improve this Doc View Source

    IsSubsetOf(IEnumerable<Entity>)

    Declaration
    public bool IsSubsetOf(IEnumerable<Entity> other)
    Parameters
    Type Name Description
    IEnumerable<Entity> other
    Returns
    Type Description
    bool
    | Improve this Doc View Source

    IsSupersetOf(IEnumerable<Entity>)

    Declaration
    public bool IsSupersetOf(IEnumerable<Entity> other)
    Parameters
    Type Name Description
    IEnumerable<Entity> other
    Returns
    Type Description
    bool
    | Improve this Doc View Source

    Overlaps(IEnumerable<Entity>)

    Declaration
    public bool Overlaps(IEnumerable<Entity> other)
    Parameters
    Type Name Description
    IEnumerable<Entity> other
    Returns
    Type Description
    bool
    | Improve this Doc View Source

    Remove(Entity)

    Declaration
    public bool Remove(Entity item)
    Parameters
    Type Name Description
    Entity item
    Returns
    Type Description
    bool
    | Improve this Doc View Source

    SetEquals(IEnumerable<Entity>)

    Declaration
    public bool SetEquals(IEnumerable<Entity> other)
    Parameters
    Type Name Description
    IEnumerable<Entity> other
    Returns
    Type Description
    bool
    | Improve this Doc View Source

    SymmetricExceptWith(IEnumerable<Entity>)

    Declaration
    public void SymmetricExceptWith(IEnumerable<Entity> other)
    Parameters
    Type Name Description
    IEnumerable<Entity> other
    | Improve this Doc View Source

    UnionWith(IEnumerable<Entity>)

    Declaration
    public void UnionWith(IEnumerable<Entity> other)
    Parameters
    Type Name Description
    IEnumerable<Entity> other

    Implements

    ISet<T>
    ICollection<T>
    IEnumerable<T>
    IEnumerable
    • Improve this Doc
    • View Source
    In This Article
    Back to top LobsterFramework documentation