Platformer Coding Challenge - ReadMe File

Author: Stone Aerni

Modified: 2024-10-3

0. What is the link to your project on itch.io?

  (Just paste the link here.)
 

1. What are the controls to your game? How do we play?

  Use the arrow keys to move, left shift to sprint, and the spacebar to jump and double jump.
 

2. What creative additions did you make? How can we find them?

  Added a double jump, double jump particle effect, and a sprint
 

3. Any assets used that you didn't create yourself?

  All assets that were used were provided.
 

4. Did you receive help from anyone outside this class or from anyone in this class that is not in a group with you?

  I did not receive any help from anyone.
 

5. Did you get help from any AI Code Assistants?

 

I had chatGPT help me implement the code for the particle effects. It helped me implement this code: if (Jump_Particles_Prefab != null)

                {

                    GameObject particleSpawn = Instantiate( Jump_Particles_Prefab, transform.position, Quaternion.identity );

                    ParticleSystem particleSystem = particleSpawn.GetComponent<ParticleSystem>();

                    if (particleSystem != null)

                    {

                        particleSystem.Play();

                    }

                    

                }

6. Did you get help from any online websites, videos, or tutorials?

  I did not get any help from outside resources besides chatgpt.

7. What trouble did you have with this project?

  I had trouble implementing the code for the jump particle system. I couldn't figure out how to instantiate the particle system.

8. Is there anything else we should know?

  No.
StatusReleased
PlatformsHTML5
Authoraernisto
Made withUnity

Leave a comment

Log in with itch.io to leave a comment.