# Quickstart Guide
This guide will help you get started using F3D.
As an overview, you'll learn how to run F3D and open files, configure basic scene constructions, interact with them, and play animations.
## Prerequisites
To use F3D, you'll need to install F3D. See the download page for the latest release package supported by your system.
## Running F3D
Once F3D has been installed, you should be able to open a file in any of the following ways:
- Open a file directly from your file manager.
- Open the F3D application directly, then drag and drop a file into the application window.
- Run F3D from the terminal with a set of command-line [options](03-OPTIONS.md).
- Configure F3D as a [thumbnailer](12-DESKTOP_INTEGRATION.md) for supported file formats with certain file managers.
If you choose to run F3D from the terminal, you can open your file by running the following:
```
f3d /path/to/file.ext
```
Optionally, you can also save the rendering into an image file:
```
f3d /path/to/file.ext --output=/path/to/img.png
```
If you need help, specify the `--help` [option](03-OPTIONS.md):
```
f3d --help
man f3d # Linux only
```
Once you've opened your file in F3D, you're all set to start visualizing! Press H to open a list of shortcuts to help you interact with your scene.
See the [supported file formats](02-SUPPORTED_FORMATS.md) page for the full list of file types that F3D can open.
## Constructing scenes
Certain [formats](02-SUPPORTED_FORMATS.md) are listed as **full scene** formats (.gltf/.glb, .3ds, .wrl, .obj, .fbx, .dae, .off, .x, .3mf, .usd)
which means these files contain not only _geometry_ but also some scene information like _lights_, _cameras_, _actors_ in the scene,
as well as _texture_ properties. By default, all this information will be loaded from the file and displayed.
For file formats that are not **full scene**, **a default scene** is created.
For **default scene** formats, certain default values are set automatically:
- texture-\*: ""
- line-width: 1.0
- point-size: 10.0
- opacity: 1.0
- color: 0.65, 0.65, 0.65
- emissive-factor: 1.0, 1.0, 1.0
- normal-scale: 1.0
- metallic: 0.0
- roughness: 0.3
- base-ior: 1.5
- camera-orthographic: false
- unlit: false
They will be overridden when using corresponding [options](03-OPTIONS.md), either from command line or [configuration file](06-CONFIGURATION_FILE.md).
## Interacting with your scene
Once you've loaded your scene in F3D, you can interact with it by using your mouse and certain hotkeys.
### Moving the camera
- _Click and drag_ with the _left_ mouse button to **rotate** around the focal point of the camera.
- _Click and drag_ vertically with the _right_ mouse button OR _move the mouse wheel_ to **zoom in/out**.
- _Click and drag_ with the _middle_ mouse button to **translate** the camera.
### Other shortcuts
- Press Enter to reset the camera.
- Press Space to play animation, if any.
- Press G to toggle the horizontal grid.
- Press H to display a cheatsheet of hotkey interactions.
For more information, see the [Interactions](04-INTERACTIONS.md) page.
## Playing animations
F3D can play [animations](05-ANIMATIONS.md) for any [supported files](02-SUPPORTED_FORMATS.md) that contain them.
With your file loaded into F3D, press the W hotkey to cycle through available animations. Then, press Space to play your selected animation.
Alternatively, you can use the command line to play animations. Use the `--animation-indices` [option](03-OPTIONS.md) to specify which animation you want to play. To play all animations at once, use `--animation-indices=-1`.
For more information, see the [Animations](05-ANIMATIONS.md) page.
## Further Reading
- [A list of all F3D command-line options.](03-OPTIONS.md)
- [How to interact with scenes in F3D.](04-INTERACTIONS.md)
- [How to play animations in F3D.](05-ANIMATIONS.md)
- [How to specify colormaps in F3D.](10-COLOR_MAPS.md)
- [How to configure plugins in F3D.](13-PLUGINS.md)
- [Limitations and how to troubleshoot F3D.](14-LIMITATIONS_AND_TROUBLESHOOTING.md)