-
Book Overview & Buying
-
Table Of Contents
Godot 4 Game Development Projects - Second Edition
By :
Now that the ball is on the course, you need a way to aim and hit it. There are many possible control schemes for this type of game. For this project, you’ll use a two-step process:
Drawing an object in 3D is not as easy as it is in 2D. In many cases, you’ll have to switch to a 3D modeling program such as Blender to create your game’s objects. However, in this case, Godot’s primitives will do fine. To make an arrow, you need two meshes: a long thin rectangle and a triangular prism.
Making your own model
If you’re comfortable using a separate 3D modeling program such as Blender, feel free to use that to create the arrow mesh instead of following the following procedure. Just drop the exported model into your...