Skip to content

Commit 3c84b85

Browse files
committed
chore(sdk,source) : updated managed source for 1.16.3 hotfix
Including PEW edit for continuance token
1 parent 16b2aed commit 3c84b85

File tree

2 files changed

+20
-7
lines changed

2 files changed

+20
-7
lines changed

com.playeveryware.eos/Runtime/EOS_SDK/Generated/AntiCheatCommon/AntiCheatCommonPlayerTakeDamageResult.cs

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,24 @@ public enum AntiCheatCommonPlayerTakeDamageResult : int
1313
/// </summary>
1414
None = 0,
1515
/// <summary>
16-
/// Player character is temporarily incapacitated and requires assistance to recover
16+
/// Deprecated - use more specific values below instead
1717
/// </summary>
18-
Downed = 1,
18+
DownedDEPRECATED = 1,
1919
/// <summary>
20-
/// Player character is permanently incapacitated and cannot recover (e.g. dead)
20+
/// Deprecated - use more specific values below instead
2121
/// </summary>
22-
Eliminated = 2
22+
EliminatedDEPRECATED = 2,
23+
/// <summary>
24+
/// Player character transitioned from a normal state to temporarily incapacitated and requires assistance to recover.
25+
/// </summary>
26+
NormalToDowned = 3,
27+
/// <summary>
28+
/// Player character transitioned from a normal state to permanently incapacitated and cannot recover (e.g. dead).
29+
/// </summary>
30+
NormalToEliminated = 4,
31+
/// <summary>
32+
/// Player character transitioned from a temporarily incapacitated state to permanently incapacitated and cannot recover (e.g. dead).
33+
/// </summary>
34+
DownedToEliminated = 5
2335
}
2436
}

com.playeveryware.eos/Runtime/EOS_SDK/Generated/ContinuanceToken.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,10 @@ public Result ToString(out Utf8String outBuffer)
5050
// Call the EOS_ContinuanceToken_ToString function will a null buffer address to determine the correct buffer length.
5151
// Discard the result of this call because it is not relevant.
5252
_ = Bindings.EOS_ContinuanceToken_ToString(InnerHandle, System.IntPtr.Zero, ref inOutBufferLength);
53-
// PEW: End modify
54-
55-
var funcResult = Bindings.EOS_ContinuanceToken_ToString(InnerHandle, outBufferAddress, ref inOutBufferLength);
53+
outBufferAddress = Helper.AddAllocation(inOutBufferLength);
54+
// PEW: End modify
55+
56+
var funcResult = Bindings.EOS_ContinuanceToken_ToString(InnerHandle, outBufferAddress, ref inOutBufferLength);
5657

5758
Helper.Get(outBufferAddress, out outBuffer);
5859
Helper.Dispose(ref outBufferAddress);

0 commit comments

Comments
 (0)