helper functions added

- Added helper functions to facilitate Vector3 and Transform operations.
- Defined operator overloads for Vector3 (not tested).
- Added fly and spawnPrefab functions to the Misc namespace (not tested).
- Added fly speed to settings.
This commit is contained in:
Jadis0x
2024-05-19 02:43:52 +03:00
parent 0c809fc44b
commit d32b92d1e3
9 changed files with 156 additions and 7 deletions

View File

@@ -113,6 +113,9 @@ void Run()
if (settings::fullBright)
Misc::FullBright();
if (settings::fly)
Misc::Fly(settings::fly_speed);
std::this_thread::sleep_for(std::chrono::milliseconds(400));
}
CreateThread(0, 0, EjectThread, 0, 0, 0);