References
I have used several references in order to gain knowledge and use materials in the project.
Materials and Columns:
-
KE Statues - Lite: https://assetstore.unity.com/packages/3d/props/ke-statues-lite-340510
-
Classic Columns: https://assetstore.unity.com/packages/3d/environments/historic/classic-columns-58062
Tutorials:
- Valem Tutorials: https://www.youtube.com/watch?v=HhtTtvBF5bI&list=PLpEoiloH-4eP-OKItF8XNJ8y8e1asOJud
Use of LLM’s:
The LLM’s are used to solve errors that i was faced during building phase. There is an instance where i faced an issue in Blocks room. I have used IsTrigger to detect whenever Player (with Player tag) touches it, it has to respawn. At some instances, the player use to just fall after jumping on to the Danger block.
I tried to get help from the LLM, it kept on Hallucinating or giving solutions which are kind of way off topic. So, I decided to do trial and error, I have Unchecked IsTrigger and in the Danger block script, used collider.CompareTag(“Danger”) to activate the respawn and it worked.