-
Notifications
You must be signed in to change notification settings - Fork 9
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
317fa3f
commit 56e0bb4
Showing
10 changed files
with
231 additions
and
1 deletion.
There are no files selected for viewing
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
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 |
---|---|---|
|
@@ -6,4 +6,5 @@ | |
namespace cdc | ||
{ | ||
Vector3 Mul3x3(Matrix* matA, Vector3* vecB); | ||
Vector3 Mul3x4(Matrix* matA, Vector3* vecB); | ||
} |
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 |
---|---|---|
|
@@ -13,5 +13,6 @@ namespace cdc | |
Vector col3; | ||
|
||
void Build(Euler* euler); | ||
void Build_XYZOrder(cdc::Euler* euler); | ||
}; | ||
} |
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,37 @@ | ||
#pragma once | ||
|
||
#include "instance/Instance.h" | ||
|
||
enum TriggerShape | ||
{ | ||
TriggerShape_Box = 1, | ||
TriggerShape_Sphere = 2 | ||
}; | ||
|
||
struct IntroDataTrigger : IntroData | ||
{ | ||
char pad1[44]; | ||
|
||
TriggerShape shape; | ||
float LocalXExtent; | ||
float LocalYExtent; | ||
float LocalZExtent; | ||
float Radius; | ||
}; | ||
|
||
struct NsInstance | ||
{ | ||
char pad1[32]; | ||
|
||
Instance* m_instance; | ||
}; | ||
|
||
struct NsTriggerPlaneBase : NsInstance | ||
{ | ||
unsigned int m_flags; | ||
}; | ||
|
||
struct NsTriggerVolumeBase : NsInstance | ||
{ | ||
unsigned int m_flags; | ||
}; |
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
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