-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9bcd2e2
commit 9101c23
Showing
8 changed files
with
90 additions
and
0 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
Src/GBX.NET/Engines/Meta/NPlugStaticObjectModel_SInstanceParams.chunkl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
NPlugStaticObjectModel_SInstanceParams 0x2F0D9000 | ||
- inherits: SMetaPtr | ||
|
||
archive | ||
version | ||
float Phase01 |
18 changes: 18 additions & 0 deletions
18
Src/GBX.NET/Engines/Meta/NPlugStaticObjectModel_SInstanceParams.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
namespace GBX.NET.Engines.Meta; | ||
|
||
public partial class NPlugStaticObjectModel_SInstanceParams : IVersionable | ||
{ | ||
public int Version { get; set; } | ||
|
||
#if NET8_0_OR_GREATER | ||
static void IClass.Read<T>(T node, GbxReaderWriter rw) | ||
{ | ||
node.ReadWrite(rw); | ||
} | ||
#endif | ||
|
||
public override void ReadWrite(GbxReaderWriter rw) | ||
{ | ||
ReadWrite(rw, v: 0); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
CPlugEditorHelper 0x0917B000 | ||
|
||
archive | ||
version | ||
CPlugPrefab Prefab (external) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
namespace GBX.NET.Engines.Plug; | ||
|
||
public partial class CPlugEditorHelper : IVersionable | ||
{ | ||
public int Version { get; set; } | ||
|
||
#if NET8_0_OR_GREATER | ||
static void IClass.Read<T>(T node, GbxReaderWriter rw) | ||
{ | ||
node.ReadWrite(rw); | ||
} | ||
#endif | ||
|
||
public override void ReadWrite(GbxReaderWriter rw) | ||
{ | ||
ReadWrite(rw, v: 0); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CPlugSpawnModel 0x0917A000 | ||
|
||
0x000 | ||
version | ||
iso4 Loc | ||
float TorqueX | ||
timeint TorqueDuration | ||
vec3 DefaultGravitySpawn | ||
int |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
NPlugTrigger_SWaypoint 0x09178000 | ||
|
||
archive | ||
version | ||
int<EGameItemWaypointType> Type | ||
CPlugSurface TriggerShape (external) | ||
bool NoRespawn | ||
|
||
enum EGameItemWaypointType | ||
Start | ||
Finish | ||
Checkpoint | ||
None | ||
StartFinish | ||
Dispenser |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
namespace GBX.NET.Engines.Plug; | ||
|
||
public partial class NPlugTrigger_SWaypoint : IVersionable | ||
{ | ||
public int Version { get; set; } | ||
|
||
#if NET8_0_OR_GREATER | ||
static void IClass.Read<T>(T node, GbxReaderWriter rw) | ||
{ | ||
node.ReadWrite(rw); | ||
} | ||
#endif | ||
|
||
public override void ReadWrite(GbxReaderWriter rw) | ||
{ | ||
ReadWrite(rw, v: 0); | ||
} | ||
} |