At the end of the project, I would like to add UI to help user when they want to explore the solar system. The UI consists with 3 function, there are function to determine number of planets, to disable orbit line, and stop planet rotation.
Leave a CommentTag: computer graphics
Create Planet Orbit
To build solar system generator, I need to make the planet to have an orbit and rotate in this orbit. The orbit of the planet usually ellipse and the orbit need to be generated randomly. Also, the planet need to rotate in its axis, so we need a function to achieve this work. To draw the orbit we use Line…
Leave a CommentMy Experience Built a Virtual Reality Game
This is the second project from advanced graphics and Interaction course in KTH Royal Institute of Technology. In this project we would like to explore a virtual reality environment as a game and combine it with a library called Manomotion to detect our hand gesture using phone camera. At the end, we created a shooting game, with controller is user’s…
Leave a CommentMy First Journey with Augmented Reality
This is my first project related to Augmented Reality. I took this project as part of Advanced Graphic and Interaction Course in KTH Royal Institute of Technology. This project aims to provide small movie production with a collaborative tool which would allow them to work with animated storyboards. They are now able to edit complex scenes in real time using…
Leave a CommentAdd Ocean Depth Shader
In this part, I add Ocean depth shader to distinguish different depth of the ocean. To make this happen, I need to add a new parameter in colorsettings.cs script to determine the gradient color of the ocean. And in the previous code, we start to calculate the elevation from the ocean to the max elevation. Right now, we need to…
Leave a CommentAdd Biomes Effect
The biome effect will give different color on different height in the planet. Like picture below, I can put three different color to make 3 different biomes. To make this happen we need to create different color generator. In previous color generator, we only focus on gradient color, right now we put tint color to set the biome color. public float…
Leave a Comment