Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -374,8 +374,13 @@ public void Execute(int index)

var result = new JobResultStruct()
{
#if UNITY_6000_3_0A6_OR_HIGHER
ThisInstanceID = PairedHeaders[index].bodyEntityId,
OtherInstanceID = PairedHeaders[index].otherBodyEntityId,
#else
ThisInstanceID = PairedHeaders[index].bodyInstanceID,
OtherInstanceID = PairedHeaders[index].otherBodyInstanceID,
#endif
AverageNormal = averageNormal,
HasCollisionStay = collisionStaycount != 0,
AverageCollisionStayNormal = averageCollisionStay,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,11 @@
"name": "Unity",
"expression": "6000.1.0a1",
"define": "HOSTNAME_RESOLUTION_AVAILABLE"
},
{
"name": "Unity",
"expression": "6000.3.0a6",
"define": "UNITY_6000_3_0A6_OR_HIGHER"
}
],
"noEngineReferences": false
Expand Down