コード例 #1
0
ファイル: EntityBase.cs プロジェクト: RoqueDeicide/CryCIL
 /// <summary>
 /// Requests movement at the specified slot, providing an animated character is
 /// currently loaded.
 /// </summary>
 /// <param name="request">Object that describes the movement.</param>
 public void AddMovement(ref EntityMovementRequest request)
 {
     EntityInterop.AddMovement(this.AnimatedCharacterHandle, ref request);
 }
コード例 #2
0
ファイル: EntityBase.cs プロジェクト: iniside/CryCIL
 /// <summary>
 /// Requests movement at the specified slot, providing an animated character is
 /// currently loaded.
 /// </summary>
 /// <param name="request">Object that describes the movement.</param>
 public void AddMovement(ref EntityMovementRequest request)
 {
     EntityInterop.AddMovement(this.AnimatedCharacterHandle, ref request);
 }
コード例 #3
0
ファイル: EntityInterop.cs プロジェクト: RoqueDeicide/CryCIL
 public static extern void AddMovement(IntPtr animatedCharacterPtr, ref EntityMovementRequest request);