vr4vet / Blue-Sector

Virtual Reality app for exploring blue sector workplaces and professions.
MIT License
2 stars 0 forks source link

Make FishFactory independent of GameManager #521

Open ingolvjr opened 2 weeks ago

ingolvjr commented 2 weeks ago

currently most of the scripts in FishFactory is dependent on GameManager and throw errors when it is not present, this is troublesome when testing.

This is an easy solve by just writing if (!GameManager) return; or something like that