Age | Commit message (Collapse) | Author |
|
Implement blending audio feature to AnimationTree
|
|
|
|
Close undefined
Fix undefined
|
|
Improve TileSet 3to4 conversion, avoiding some data loss
|
|
|
|
Fix infinite loop in animation compress
|
|
Warn that autotiles from 3.x cannot be converted automatically to 4.x
|
|
smix8/tileset_navigationlayers_bitmask_helpers_4.x
Add TileSet helper functions to set/get navigation layer bitmask values
|
|
Rename texture_offset and unclamp it
|
|
|
|
|
|
Handle gltf binary images
|
|
Adds helper functions to TileSet to set / get navigation layers bitmask values.
|
|
|
|
[ Ignore and Warn | Extract Textures (default) | Optimize Loading Embedded as Basisu ]
Enable compressed mip maps from Basis Universal for faster compressions.
Increase the quality of Basis to avoid corruption.
To keep compatibility use the first mip of the previous internal Godot format.
Because texture names may have invalid filename characters, adds String::validate_filename to sanitize filenames for import pipeline use.
|
|
Make `AnimatedSprite`'s playback API consistent with `AnimationPlayer`
|
|
|
|
Remove size restrictions from `StyleBoxTexture`
|
|
Make SurfaceTool.generate_normals() behave consistently with smoothing groups
|
|
to smoothing groups, imply group 0 is flat
|
|
|
|
|
|
|
|
|
|
|
|
Fix shader include dependency handling
|
|
Add "dedicated server" export mode which can strip unneeded visual resources
|
|
|
|
Update instances of scenes which have been reimported.
|
|
Convert en_GB spelling to en_US with codespell
|
|
Simplify AudioStreamPolyphonic
|
|
|
|
* Make AudioStreamPolyphonic not requre a polling thread (simpler, faster)
* Improve error reporting in AudioStreamPlayer*::get_stream_playback() error reporting to improve usability.
|
|
allowed negative DoF blur transition in the editor
|
|
Remove compatibility code for Mesh surfaces
|
|
|
|
Clean-up, harmonize, and improve StyleBox API
|
|
Address Android editor crashes
|
|
* This new audio stream allows to play multiple sounds and control them over time from code.
* It greatly simplifies tasks such as generative music (music generated from code) or audio.
This new type of stream was added with the goal of fixing audio blending in AnimationPlayer and AnimationTree, but can be used by others for their regular audio needs.
Does not fix anything currently, but should help implement #69758 properly.
Some demo code of how to use this:
```GDScript
var player = $SomeNode as AudioStreamPlayer
player.stream = AudioStreamPolyphonic.new()
var playback = player.get_stream_playback() as AudioStreamPlaybackPolyphonic
var id = playback.play_stream(preload("res://Clip1.ogg"))
await get_tree().create_timer(1).timeout
playback.set_stream_volume(id,-12) # Set volume to half after one second
await get_tree().create_timer(2).timeout
var id2 = playback.play_stream(preload("res://Clip2.ogg")) # 2 seconds later, start another clip
await get_tree().create_timer(1).timeout
playback.stop_stream(id) # 1 second later, kill the first clip
playback.set_stream_pitch_scale(id2,1.5) # Make the second clip go 50% faster
```
|
|
|
|
Support script global resource name in EditorFileSystem
|
|
Clean up shader parameter remap
|
|
* Works for binary and text files.
* Makes EditorQuickOpen work with custom resources again.
* Information is cached and easily accessible.
Properly fixes #66179. Supersedes #66215 and supersedes #62417
**WARNING**: This required breaking backwards binary compatibility (.res and .scn files). Files saved after this PR is merged will no longer open in any earlier versions of Godot.
|
|
This PR is a follow up to #64092, which fixed important issues but it was implemented in an overly complex and inefficient way (because it forced the default code path to always go through string operations).
This cleans up all the shader parameter code.
This fixes #54336. Also fixes #56219 because, as the new code never queries the RenderingServer on load, potential deadlocks are avoided.
**NOTE**: materials saved between #62972 and #64092 will no longer work and will need to be resaved in an earlier version.
|
|
fix(editor): Remove some MeshLibrary editor updates
|
|
|
|
|
|
|
|
Calinou/environment-no-sky-hide-ambient-light-properties
Hide Ambient Light properties in Environment inspector depending on mode
|
|
Implement BiDi override mode for GDScript source.
|