mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2026-01-05 23:40:07 +01:00
Add README files to most of the misc demos
The Android ones can wait for later
This commit is contained in:
12
misc/instancing/README.md
Normal file
12
misc/instancing/README.md
Normal file
@@ -0,0 +1,12 @@
|
||||
# Instancing Demo
|
||||
|
||||
A demo showing how to use scene instancing to
|
||||
make many duplicates of the same object.
|
||||
|
||||
Language: GDScript
|
||||
|
||||
Renderer: GLES 2
|
||||
|
||||
## Screenshots
|
||||
|
||||

|
||||
0
misc/instancing/screenshots/.gdignore
Normal file
0
misc/instancing/screenshots/.gdignore
Normal file
BIN
misc/instancing/screenshots/instancing.png
Normal file
BIN
misc/instancing/screenshots/instancing.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 112 KiB |
11
misc/joypads/README.md
Normal file
11
misc/joypads/README.md
Normal file
@@ -0,0 +1,11 @@
|
||||
# Joypads Demo
|
||||
|
||||
A tool for testing joypad input.
|
||||
|
||||
Language: GDScript
|
||||
|
||||
Renderer: GLES 2
|
||||
|
||||
## Screenshots
|
||||
|
||||

|
||||
0
misc/joypads/screenshots/.gdignore
Normal file
0
misc/joypads/screenshots/.gdignore
Normal file
BIN
misc/joypads/screenshots/joypads.png
Normal file
BIN
misc/joypads/screenshots/joypads.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 93 KiB |
@@ -32,8 +32,8 @@ func _ready():
|
||||
|
||||
func _refresh_noise_images():
|
||||
# Adjust min/max for shader.
|
||||
var _min = ((min_noise + 1)/2)
|
||||
var _max = ((max_noise + 1)/2)
|
||||
var _min = (min_noise + 1) / 2
|
||||
var _max = (max_noise + 1) / 2
|
||||
var _material = $SeamlessNoiseTexture.material
|
||||
_material.set_shader_param("min_value", _min)
|
||||
_material.set_shader_param("max_value", _max)
|
||||
|
||||
12
misc/opensimplexnoise/README.md
Normal file
12
misc/opensimplexnoise/README.md
Normal file
@@ -0,0 +1,12 @@
|
||||
# OpenSimplex Noise
|
||||
|
||||
This is a sample project which allows the user to tweak
|
||||
different parameters of an OpenSimplex noise texture.
|
||||
|
||||
Language: GDScript
|
||||
|
||||
Renderer: GLES 2
|
||||
|
||||
## Screenshots
|
||||
|
||||

|
||||
0
misc/opensimplexnoise/screenshots/.gdignore
Normal file
0
misc/opensimplexnoise/screenshots/.gdignore
Normal file
BIN
misc/opensimplexnoise/screenshots/opensimplex.png
Normal file
BIN
misc/opensimplexnoise/screenshots/opensimplex.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 93 KiB |
7
misc/pause/README.md
Normal file
7
misc/pause/README.md
Normal file
@@ -0,0 +1,7 @@
|
||||
# Pause Demo
|
||||
|
||||
A demo showing how the game can be paused.
|
||||
|
||||
Language: GDScript
|
||||
|
||||
Renderer: GLES 2
|
||||
12
misc/regex/README.md
Normal file
12
misc/regex/README.md
Normal file
@@ -0,0 +1,12 @@
|
||||
# RegEx (Regular Expressions)
|
||||
|
||||
A demo showing regex functionality and usage.
|
||||
Can also serve as a playground for regex testing.
|
||||
|
||||
Language: GDScript
|
||||
|
||||
Renderer: GLES 2
|
||||
|
||||
## Screenshots
|
||||
|
||||

|
||||
@@ -15,7 +15,7 @@ _global_script_class_icons={
|
||||
|
||||
[application]
|
||||
|
||||
config/name="RegEx"
|
||||
config/name="RegEx (Regular Expressions)"
|
||||
run/main_scene="res://regex.tscn"
|
||||
config/icon="res://icon.png"
|
||||
|
||||
|
||||
0
misc/regex/screenshots/.gdignore
Normal file
0
misc/regex/screenshots/.gdignore
Normal file
BIN
misc/regex/screenshots/regex.png
Normal file
BIN
misc/regex/screenshots/regex.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.1 KiB |
11
misc/tween/README.md
Normal file
11
misc/tween/README.md
Normal file
@@ -0,0 +1,11 @@
|
||||
# Tween Interpolation
|
||||
|
||||
A demo showing advanced tween usage.
|
||||
|
||||
Language: GDScript
|
||||
|
||||
Renderer: GLES 2
|
||||
|
||||
## Screenshots
|
||||
|
||||

|
||||
0
misc/tween/screenshots/.gdignore
Normal file
0
misc/tween/screenshots/.gdignore
Normal file
BIN
misc/tween/screenshots/tween.png
Normal file
BIN
misc/tween/screenshots/tween.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 48 KiB |
19
misc/window_management/README.md
Normal file
19
misc/window_management/README.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# Window Management
|
||||
|
||||
A demo showing the various window management features available through
|
||||
[`OS`](https://docs.godotengine.org/en/latest/classes/class_os.html).
|
||||
|
||||
- Moving the window.
|
||||
- Making it resizeable / nonresizeable and setting its size.
|
||||
- Minimizing and maximizing.
|
||||
- Moving the window around.
|
||||
- Capturing or hiding the mouse.
|
||||
- Getting various information about the screens, including DPI.
|
||||
|
||||
Language: GDScript
|
||||
|
||||
Renderer: GLES 2
|
||||
|
||||
## Screenshots
|
||||
|
||||

|
||||
0
misc/window_management/screenshots/.gdignore
Normal file
0
misc/window_management/screenshots/.gdignore
Normal file
BIN
misc/window_management/screenshots/window.png
Normal file
BIN
misc/window_management/screenshots/window.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 56 KiB |
Reference in New Issue
Block a user