Visual Debugger implementation

This commit is contained in:
Jett
2022-09-04 11:47:53 +01:00
parent 14d4bf3cc5
commit f3ace4e7ed
39 changed files with 334 additions and 92 deletions

View File

@@ -12,12 +12,12 @@ struct DynamicShootingGalleryParams {
/**
* The distance from the camera to the barrel
*/
Vector3 cameraBarrelOffset;
NiPoint3 cameraBarrelOffset;
/**
* The area the barrel is looking at
*/
Vector3 facing;
NiPoint3 facing;
/**
* The velocity of the cannonballs
@@ -58,12 +58,12 @@ struct StaticShootingGalleryParams {
/**
* The position of the camera
*/
Vector3 cameraPosition;
NiPoint3 cameraPosition;
/**
* The position that the camera is looking at
*/
Vector3 cameraLookatPosition;
NiPoint3 cameraLookatPosition;
};
/**