
上QQ阅读APP看书,第一时间看更新
Adding holographic objects
Our scene looks quite dull. We have nothing in our world besides a black background. So let's add something a bit more interesting to our world.
We will add a sphere in our world. To do this, take the following steps:
- Make sure that the camera is not selected anymore--click anywhere in the hierarchy panel and verify that the inspector window is empty.
- Click on the Create button at the top of the hierarchy window.
- Select Sphere. You will note that the sphere is added to the hierarchy, although it is not visible. The reason for this is that, in order to make the whole system performant, the insides of our 3D objects are not rendered. Since the sphere is placed at location {0,0,0}, the camera is inside the sphere and we cannot see it.
- Move the sphere by selecting it in the hierarchy panel and change its location in the inspector window. Move it about three meters away from the user and move it half a meter below the head of the user. Since the HoloLens is located at {0,0,0}, this means we have to place the sphere at {0,-0.5, 3}.
- Scale the sphere (a sphere with a diameter of 1 meter is quite large) and make it 25 centimeters.
You will end up with something like this:

Our scene with the newly added sphere