Search Results for

    Show / Hide Table of Contents

    Class EntityBoneCollection

    Inheritance
    Object
    EntityBoneCollection
    PedBoneCollection
    Implements
    IEnumerable<EntityBone>
    IEnumerable
    Inherited Members
    Object.ToString()
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.ReferenceEquals(Object, Object)
    Object.GetType()
    Object.MemberwiseClone()
    Namespace: GTA
    Assembly: ScriptHookVDotNet3.dll
    Syntax
    public class EntityBoneCollection : IEnumerable<EntityBone>, IEnumerable

    Fields

    | Improve this Doc View Source

    _owner

    Declaration
    protected readonly Entity _owner
    Field Value
    Type Description
    Entity

    Properties

    | Improve this Doc View Source

    Core

    Gets the core bone of this Entity.

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

    Count

    Gets the number of bones that this Entity has.

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

    Item[Int32]

    Gets the EntityBone at the specified bone index.

    Declaration
    public EntityBone this[int boneIndex] { get; }
    Parameters
    Type Name Description
    Int32 boneIndex

    The bone index.

    Property Value
    Type Description
    EntityBone
    | Improve this Doc View Source

    Item[String]

    Gets the EntityBone with the specified bone name.

    Declaration
    public EntityBone this[string boneName] { get; }
    Parameters
    Type Name Description
    String boneName

    Name of the bone.

    Property Value
    Type Description
    EntityBone

    Methods

    | Improve this Doc View Source

    Contains(String)

    Determines whether this Entity has a bone with the specified bone name

    Declaration
    public bool Contains(string boneName)
    Parameters
    Type Name Description
    String boneName

    Name of the bone.

    Returns
    Type Description
    Boolean

    true if this Entity has a bone with the specified bone name; otherwise, false.

    | Improve this Doc View Source

    GetEnumerator()

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

    GetHashCode()

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    Int32
    Overrides
    Object.GetHashCode()

    Explicit Interface Implementations

    | Improve this Doc View Source

    IEnumerable.GetEnumerator()

    Declaration
    IEnumerator IEnumerable.GetEnumerator()
    Returns
    Type Description
    IEnumerator

    Implements

    System.Collections.Generic.IEnumerable<T>
    System.Collections.IEnumerable
    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX