How to Create a First Person Camera
Introduction
This tutorial shows how to make an Entity which controls the Camera in first person mode. The general steps we'll follow are:
Create a FlatRedBall project
Create a large repeating Sprite which we'll use for the ground
Create an Entity which will control the Camera (called CameraController)
Set the initial position of our CameraController instance in our Screen
Implement code to move and look around
Create a 3D project
If you already have a project created, you can skip this step. If not, to Create a project:
Launch the FRB Editor
Select File->New Project
Name your project FirstPersonProject
Uncheck the Open New Project Wizard option - we will be creating our own game fully from scratch
Click Create Project!
Now we'll set the Camera to be in 3D mode:
In the FRB Editor, click the camera icon
Change the Perspective to 3D
Finally create a Screen which will contain the rest of our project. This is not necessary if you already have a GameScreen:
Select the Quick Actions tab
Click Add Screen/Level
Uncheck the Add LayeredTileMap option unless you intend to use Tiled for your levels. To keep this tutorial short, we will skip this step.
Click OK to create a new screen called GameScreen
Create a large repeating Sprite
Now we'll create a large Sprite which will serve as our ground. To create this:
Drag+drop the newly-downloaded .png file onto GameScreen's Files in the FRB Editor
Select the Quick Actions tab
Click Add Object to Game Screen
Search for Sprite
Click OK
Now that the Sprite has been created, let's make it really large and repeating:
Select the new SpriteInstance
Click the Variables tab
Set the Sprite's Texture to redball
Set the Sprite's TextureAddressMode to Wrap
Set the Sprite's Right Texture Pixel to 32000 - this makes the Sprite repeat 1000 times on the X axis
Set the Sprite's Bottom Texture Pixel to 32000 - this makes the Sprite repeat 1000 times on the Y axis
Create CameraController Entity
Now we'll create an Entity which will control the Camera. To do this:
In the FRB Editor, right-click on Entities
Select Add Entity
Name the new entity "CameraController" and click OK
Next let's have the CameraController control our Camera. To do this:
Right-click on CameraController's Objects
Select "Add Object"
Verify "FlatRedBall or Custom Type" is selected.
Select "Camera" and click OK
Drag+drop the "CameraController" into the GameScreen's Objects folder to create an instance of CameraController
Set CameraController1's Initial position
Next we'll set up our initial position of the CameraController1. We'll be setting position in the FRB Editor, but we'll set the rotation and orientation in code since the FRB Editor does not allow us to set some of these values. To set the CameraController1's initial values:
Select CameraController1 in the FRB Editor
Set Z to 10. This is the height that the Camera will be positioned above the ground
Open Visual Studio
Open CameraController.cs which is located in the Entities folder
Add the following code to CustomInitialize:
Note that we set the CameraCullMode to CameraCullMode.None. Although this isn't strictly necessary for this demo, you most likely want to do this if you are making a game that supports camera rotation. For more information, see the CameraCullMode page.
At this point we can run the game and we should see the Camera looking into the distance:
Implement code to move and look
Finally we'll add code for movement and looking. We'll add looking first, then add moving. To do this, add the following code to CustomActivity in the CameraController entity:
Now implement the LookingActivity function:
Next, we'll implement the MovementActivity function:
Conclusion
This shows the basics of how to set up a First Person camera, but it is by no means a final implementation. First person games (and 3D games in general) are complicated and require a good understanding of 3D math, and quite often of rendering technologies.
Last updated