VinayGupta23 / alter-ego-game

A puzzle-platformer game with clones! Developed as part of CSCI526: Mobile Games at USC.
https://vinaygupta23.itch.io/alter-ego
0 stars 1 forks source link

Tutorial levels and sequencing #22

Closed vinayg-usc closed 2 years ago

vinayg-usc commented 2 years ago

Add your level sequence here: Assets/Scripts/LevelManager.cs

vinayg-usc commented 2 years ago

(Ignore for this week, will create separate issue for this idea)

I did not get a chance to explain my level idea the other day with "fragile platforms". The idea is that the platform disappears quickly once it is stepped on, so the player cannot stand there again. This is a level "concept" I had (blue = player, pink = clone):

Alter Ego - GDD (1)

If the player starts moving, the clone first steps on the fragile block and it breaks off. So the player is stuck. To prevent the player from "hopping" across, we can keep the horizontal offset equal to the jump distance. Then the only way is to sacrifice the clone on the first block, so you are free to move next.

vinayg-usc commented 2 years ago

Please fix the following issues:

Always rename/copy/delete scenes from Unity and not from File Explorer

Doing it manually can mess up the IDs. Right now build fails as two scenes have the same ID. I've committed this fix for now.

All object positions should be snapped to ensure consistent behavior

Please fix this for player, clone, key/door and end goal.

Example issue if not fixed: "Spawner" is automatically rendered behind the clone, which is now floating due to improper clone placement:

image

Please use grid snapping and then move the object, so they get aligned perfectly:

image

Canvas issues

Canvas should not be a child of main camera, please add a separate game object:

image

Canvas has multiple issues in the settings, and in the WebGL the positions seem all messed up. Please fix and ensure that it looks the same in both WebGL and Unity. Some of the fixes I found from a Google search:

image
neilroshan commented 2 years ago

@vinayg-usc

Regarding the Copying, and Deleting Scenes, we did copy and delete all from Unity and nothing from File explorer. Not sure, what went wrong there (we renamed the scenes to be unique as well).

Fixed Canvas and Snapped Player and Clone to the ground

vinayg-usc commented 2 years ago

Closed via #32.