top of page

VR Evolutionary Journey

Members: Zhimo Li

My work: 

● Gameplay design
● Implemented sound effects and audio
● Programming
● VR interaction implementation

This project is a unique multi-stage VR experience that guides the player through an evolving gameplay journey, starting from minimalist 1D movement and gradually expanding into full 3D immersion.  There are three different levels. Each level introduces new dimensions and mechanics, symbolizing the progression of both gameplay complexity and player freedom.  

Gameplay video

1D Level

image.png
image.png

In the beginning, the player navigates along a single horizontal axis, represents 1D movement. After collide with different item blocks, the game will evolute. For example, background block unlock new background, BGM block unlock music... Also, there's a “jump unlock” item, which introduces 2D movement when collected. This stage introduces basic interaction and exploration in 1D or 2D format.

2D Level

image.png
image.png

Building on the first stage, the player is now placed in a more detailed 3D environment but experiences the gameplay on a 2D plane—allowing horizontal and vertical movement. The environment introduces more complex interactions and visual depth while maintaining the simplicity of 2D mechanics. In this section, player will grab different pieces of land to build a path for player character. When player character has a larger number in the battle, he will win the battle and absorb the enemy number. Player need to grab and correctly arrange the land pieces to reach the final level. 

This level was designed to experience 2D and 3D movement simultaneously in a 3D environment. The player will control the 2D movement of player character, and experience 3D concept by grabbing the land pieces forward and backward. This is designed as a level transfer from 2D graduately to 3D and VR. 

3D VR Level

image.png

In the last level, the player enters a fully immersive VR level.  The gameplay focuses on stealth and strategy—players must hide from NPCs and overcome obstacles and reach the final goal.  Movement and interactions are done through VR controllers, emphasizing spatial awareness and environmental engagement.  This stage offers a rich, high-stakes conclusion that fully leverages the VR platform’s capabilities.

Enemy AI Control

image.png

Unity C# script controls enemy character's behavior using a simple state-based system. The enemy patrols between predefined points, idling briefly at each one. If the player enters a designated detection zone (using a BoxCollider), the enemy begins chasing them at a faster speed. Once within attack range, the enemy performs an attack animation and then resumes behavior based on the situation. The script includes smooth movement, idle pauses, and appropriate animation transitions between walking, running, and attacking.

bottom of page