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

@@ -35,6 +35,7 @@ namespace settings {
bool server_name_spoof = false;
std::string server_name = "Jadis0x";
bool fly = false;
float fly_speed = 1.f;
bool unlock_all = true;
bool exp_modifier = false;
int new_exp = 2000;

View File

@@ -39,6 +39,7 @@ namespace settings {
extern bool server_name_spoof;
extern std::string server_name;
extern bool fly;
extern float fly_speed;
extern bool unlock_all;
extern bool exp_modifier;
extern int new_exp;