Game Development Community

Splash Screen

by ben calder · in Torque X 2D · 08/14/2008 (3:22 pm) · 2 replies

I am just trying to follow the splash screen tutorial, and I am not sure how to import an image into Visual C# Express, can someone help me out.

Thanks

#1
08/15/2008 (10:35 am)
You would want to do that in builder. Or else load the image from a directory using XNA calls.
#2
08/15/2008 (1:28 pm)
Outside of using the builder, the manual way to do it is to do the following:

1. Copy the image to your game/data/images folder (or equivalent)
2. Open Visual Studio and load your game solution
3. Select the Content(data)/images folder in the Solution Explorer
4. Right-click the images folder and select Add>Existing Item... from the popup menu

Visual Studio will automatically set the correct content properties, so you should be able to just rebuild.

John K.