Prompt for Claude in Cursor:
I need to implement a transition level called "path1" that will serve as a scenic break between level1 and level2 in my game.
Requirements:
- Background Image: Use
"path1.png"
as the background for this level.
- Collision Path: Implement a walkable platform where the height can be manually adjusted in
constants.js
, similar to how level1 handles platform height.
- Scene Functionality:
- No dialogue or narration.
- Only the traveler and wolf should be present.
- Player can walk across the screen as usual.
- Fade-in when entering the scene and fade-out when exiting, just like level1.
- Scene Transitions:
- When the player reaches the right edge of path1, transition smoothly into level2 using the same fade effect as other levels.
Implementation Notes:
- Ensure
"path1"
follows the same scene structure as "level1"
for consistency.
- Keep
"constants.js"
structured so I can manually adjust the collision path height later for other transition levels.
- Maintain the same physics settings as
"level1"
to ensure smooth character movement.