Model (.fbx)
Last updated
Was this helpful?
Last updated
Was this helpful?
The .fbx file format can be loaded into a MonoGame Model class which can be drawn to the screen. The FlatRedBall Camera provides matrices which simplify the drawing of a Model object. Since the Model object is a native MonoGame object, it must be draw either your Game1's Draw method or in an IDrawableBatch.
Models can be loaded just like any other FlatRedBall file. For example, .fbx files can be dropped into Global Content Files.
Once the file has been added to global content, it can be drawn in Game1.cs as shown in the following code: