-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a shared mesh storage to avoid generating meshes every time a d…
…ebug container is created.
- Loading branch information
1 parent
f5f24e2
commit 26ff684
Showing
10 changed files
with
139 additions
and
121 deletions.
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
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
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,52 @@ | ||
#pragma once | ||
|
||
enum class GeometryType : char { | ||
Wireframe, | ||
Volumetric, | ||
Solid, | ||
}; | ||
|
||
enum class ConvertableInstanceType : char { | ||
CUBE, | ||
CUBE_CENTERED, | ||
ARROWHEAD, | ||
POSITION, | ||
SPHERE, | ||
CYLINDER, | ||
CYLINDER_AB, | ||
}; | ||
|
||
enum class InstanceType : char { | ||
// Basic wireframe | ||
CUBE, | ||
CUBE_CENTERED, | ||
ARROWHEAD, | ||
POSITION, | ||
SPHERE, | ||
SPHERE_HD, | ||
CYLINDER, | ||
CYLINDER_AB, | ||
|
||
// Volumetric from wireframes | ||
LINE_VOLUMETRIC, | ||
CUBE_VOLUMETRIC, | ||
CUBE_CENTERED_VOLUMETRIC, | ||
ARROWHEAD_VOLUMETRIC, | ||
POSITION_VOLUMETRIC, | ||
SPHERE_VOLUMETRIC, | ||
SPHERE_HD_VOLUMETRIC, | ||
CYLINDER_VOLUMETRIC, | ||
CYLINDER_AB_VOLUMETRIC, | ||
|
||
// Solid geometry | ||
BILLBOARD_SQUARE, | ||
PLANE, | ||
|
||
MAX, | ||
}; | ||
|
||
enum class ProcessType : char { | ||
PROCESS, | ||
PHYSICS_PROCESS, | ||
MAX, | ||
}; |
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