Class PedBoneCollection
Inheritance
PedBoneCollection
Namespace: GTA
Assembly: ScriptHookVDotNet3.dll
Syntax
public class PedBoneCollection : EntityBoneCollection, IEnumerable<EntityBone>, IEnumerable<PedBone>, IEnumerable
Properties
|
Improve this Doc
View Source
Core
Gets the core bone of this Ped.
Declaration
public PedBone Core { get; }
Property Value
|
Improve this Doc
View Source
Item[Bone]
Gets the PedBone with the specified boneId
.
Declaration
public PedBone this[Bone boneId] { get; }
Parameters
Type |
Name |
Description |
Bone |
boneId |
The bone Id.
|
Property Value
|
Improve this Doc
View Source
Item[Int32]
Gets the PedBone at the specified bone index.
Declaration
public PedBone this[int boneIndex] { get; }
Parameters
Type |
Name |
Description |
Int32 |
boneIndex |
The bone index.
|
Property Value
|
Improve this Doc
View Source
Item[String]
Gets the PedBone with the specified bone name.
Declaration
public PedBone this[string boneName] { get; }
Parameters
Type |
Name |
Description |
String |
boneName |
Name of the bone.
|
Property Value
|
Improve this Doc
View Source
LastDamaged
Gets the last damaged bone for this Ped.
Declaration
public PedBone LastDamaged { get; }
Property Value
Methods
|
Improve this Doc
View Source
ClearLastDamaged()
Clears the last damage a bone on this Ped received.
Declaration
public void ClearLastDamaged()
|
Improve this Doc
View Source
GetEnumerator()
Declaration
public IEnumerator<PedBone> GetEnumerator()
Returns
Explicit Interface Implementations
|
Improve this Doc
View Source
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Implements