Skip to content

Commit 010e73e

Browse files
authored
Merge pull request #666 from monkeyman192/update/19861266
Update for steam build id 19861266
2 parents c1e7e87 + 7e10883 commit 010e73e

File tree

7 files changed

+12
-9
lines changed

7 files changed

+12
-9
lines changed

libMBIN/Source/NMS/GameComponents/GcCollisionTable.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace libMBIN.NMS.GameComponents
55
{
6-
[NMS(GUID = 0x2DD3F20C1F483AED, NameHash = 0x36E3583)]
6+
[NMS(GUID = 0x96B052FE221899B5, NameHash = 0x36E3583)]
77
public class GcCollisionTable : NMSTemplate
88
{
99
[NMS(Index = 0)]

libMBIN/Source/NMS/GameComponents/GcPhysicsCollisionGroupCollidesWith.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace libMBIN.NMS.GameComponents
55
{
6-
[NMS(GUID = 0x4D0C073BBE6080B, NameHash = 0xB0C9B25F)]
6+
[NMS(GUID = 0xD6B1212007DFB2A, NameHash = 0xB0C9B25F)]
77
public class GcPhysicsCollisionGroupCollidesWith : NMSTemplate
88
{
99
[NMS(Index = 1)]

libMBIN/Source/NMS/GameComponents/GcPhysicsCollisionGroups.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
namespace libMBIN.NMS.GameComponents
44
{
5-
[NMS(GUID = 0x118B96B6166C0CFF, NameHash = 0x6A2D4F5A)]
5+
[NMS(GUID = 0xF6A9B5BF06808A9D, NameHash = 0x6A2D4F5A)]
66
public class GcPhysicsCollisionGroups : NMSTemplate
77
{
8-
// size: 0x47
8+
// size: 0x48
99
[Flags]
1010
public enum CollisionGroupEnum : uint {
1111
Normal,
@@ -68,6 +68,7 @@ public enum CollisionGroupEnum : uint {
6868
Raycast_AiShipTravel,
6969
Raycast_ObstructionQuery,
7070
Raycast_GeometryProbe,
71+
Raycast_AirNavigationProbe,
7172
Raycast_DroneTargetSensing_Friendly,
7273
Raycast_DroneTargetSensing_Unfriendly,
7374
Raycast_DroneTargetSensing_Friendly_NoShield,

libMBIN/Source/NMS/GameComponents/GcPhysicsCollisionTable.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace libMBIN.NMS.GameComponents
55
{
6-
[NMS(GUID = 0xFAAC5567E7912F72, NameHash = 0xF5EE5140)]
6+
[NMS(GUID = 0x83B91D17C7AFA27E, NameHash = 0xF5EE5140)]
77
public class GcPhysicsCollisionTable : NMSTemplate
88
{
99
[NMS(Index = 0)]
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
namespace libMBIN.NMS.GameComponents
22
{
3-
[NMS(GUID = 0xA8971E6E3E912E46, NameHash = 0x96421483)]
3+
[NMS(GUID = 0x682AA112CB98ACAE, NameHash = 0x96421483)]
44
public class GcShipAccesswayComponentData : NMSTemplate
55
{
6+
[NMS(Index = 0)]
7+
/* 0x0 */ public bool HasCustomInFlightAnimations;
68
}
79
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
namespace libMBIN.NMS.Toolkit
22
{
3-
[NMS(GUID = 0x5D3BA1A05867293C, NameHash = 0xB7832FA2)]
3+
[NMS(GUID = 0x8707747C98418DF2, NameHash = 0xB7832FA2)]
44
public class TkPhysicsWorldComponentData : NMSTemplate
55
{
66
[NMS(Index = 0)]
7-
/* 0x0 */ public float Radius;
7+
/* 0x0 */ public float SafeRadius;
88
}
99
}

libMBIN/Source/Version.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public static class Version {
2525
// the Prerelease version should be reset to 1
2626
// When the Release version is incremented:
2727
// the Prerelease version should be reset to 0
28-
internal const string VERSION_STRING = "6.04.0.1";
28+
internal const string VERSION_STRING = "6.04.0.2";
2929

3030
/// <summary>Shorthand for AssemblyVersion.Major</summary>
3131
public static int Major => AssemblyVersion.Major;

0 commit comments

Comments
 (0)