project.godot (943B)
1 ; Engine configuration file. 2 ; It's best edited using the editor UI and not directly, 3 ; since the parameters that go here are not all obvious. 4 ; 5 ; Format: 6 ; [section] ; section goes between [] 7 ; param=value ; assign values to parameters 8 9 config_version=4 10 11 _global_script_classes=[ { 12 "base": "Node2D", 13 "class": "Monstre", 14 "language": "GDScript", 15 "path": "res://monstre.gd" 16 } ] 17 _global_script_class_icons={ 18 "Monstre": "" 19 } 20 21 [application] 22 23 config/name="tomato-dungeon" 24 run/main_scene="res://cinematique.tscn" 25 config/icon="res://icon.png" 26 27 [display] 28 29 window/size/width=640 30 window/size/height=480 31 window/stretch/mode="viewport" 32 window/stretch/aspect="keep" 33 window/stretch/shrink=2.0 34 35 [physics] 36 37 common/enable_pause_aware_picking=true 38 39 [rendering] 40 41 quality/driver/driver_name="GLES2" 42 2d/snapping/use_gpu_pixel_snap=true 43 vram_compression/import_etc=true 44 vram_compression/import_etc2=false 45 environment/default_environment="res://default_env.tres"