3-D Building
-
Um I made a roof for a 3-d scene, and it wasn’t showing on the inside. Also, the player, was what? halfway in the air?
-
@shrukin You have to turn on draw back face with the block because the roof is only drawing one side of itself, also the player floating can be fixed by adjusting the z position of the player’s body
-
@tyller_ ?
-
-
@shrukin most games will only make the client (the player’s system) render the side of the object they should be able to see, this is how you see through walls into the map when you clip out of bounds in games, draw back face makes it so the back of this object is shown, I’m assuming you used planes in parts of the roof, the bottom of planes aren’t drawn because they’re used for floors, draw back face makes it so the bottom of planes are rendered
-
If the avatar is halfway in the air, then most likely its Z position is not set correctly.
For example, to make an avatar stand on the ground, its Z position should be 0.
-
@info-creaticode I was using your 3-d maze. But, ok! Thank you.