12345678910111213141516171819202122232425262728293031323334 |
- ; Engine configuration file.
- ; It's best edited using the editor UI and not directly,
- ; since the parameters that go here are not all obvious.
- ;
- ; Format:
- ; [section] ; section goes between []
- ; param=value ; assign values to parameters
- config_version=5
- [application]
- config/name="3D Labels and Texts"
- config/description="This project showcases 2 ways to draw text in 3D space: the Label3D node, and MeshInstance3D with a TextMesh primitive."
- config/tags=PackedStringArray("3d", "demo", "official", "rendering")
- run/main_scene="res://3d_labels_and_texts.tscn"
- config/features=PackedStringArray("4.2")
- config/icon="res://icon.webp"
- [display]
- window/stretch/mode="canvas_items"
- window/stretch/aspect="expand"
- [gui]
- theme/default_font_multichannel_signed_distance_field=true
- theme/default_font_generate_mipmaps=true
- [rendering]
- textures/default_filters/anisotropic_filtering_level=4
- quality/screen_filters/msaa=3
- environment/default_environment="res://default_env.tres"
|