Age | Commit message (Collapse) | Author |
|
|
|
Rename Schlick GGX to GGX.
|
|
|
|
Schlick's approximation and GGX are orthogonal concepts.
Furthermore, it's usage so far has been inconsistent: we don't even use it with anisotropic SchlickGGX, and Burley (Disney) diffuse does use it while its name doesn't indicate it.
The use of Schlick's approximation in Burley and GGX is an implementation detail and doesn't need to be reflected to the namig.
|
|
Added properties for CubeMap.
|
|
|
|
|
|
hi-ogawa/fix-spatial-shader-conversion-with-texture
Fix spatial shader conversion with texture
|
|
|
|
Prior to this, the value assumed for the interval between the start of the track and the first frame would be the one of the first key if
- *seeking/playing a continuous track*;
- *seeking a discrete track*.
And the first key would be ignored until reached -thus not modifying the target property/transform- in the remaining case; namely, *playing a discrete track*.
In other words, the inner workings of the animation system considered the unreached first key for interpolation but not for a query of every key inside a time range.
With this changes, the first key is only considered is the animation is looped and ignored otherwise. That way, in order to have a start value, you'll need an explicit key at the very beginning of the track, while having the flexibility of the animation player not touching the target value until the first key is reached.
This corresponds to the point 1) of #10752.
|
|
|
|
|
|
Remove several prints that were added for engine debugging, but are
of no use to the end user, and only pollute the editor and game logs.
|
|
Added grabber_area to default_theme sliders. Fixes #11261
|
|
|
|
I am fixing the issue by adding DATA_PAD to the return pointer as
suggested by hi-ogawa
When using set_data in AudioStreamSample in PoolByteArray, the data is set
using a DATA_PAD to pad the pointer to the correct place as such
uint8_t *dataptr = (uint8_t *)data;
copymem(dataptr + DATA_PAD, r.ptr(), datalen);
data_bytes = datalen;
godot/scene/resources/audio_stream_sample.cpp#L473
All I am doing is adding a DATA_PAD to the return pointer to
get_data() in AudioStreamSample to change
godot/scene/resources/audio_stream_sample.cpp#L48
PoolVector<uint8_t>::Write w = pv.write();
copymem(w.ptr(), data, data_bytes);
to
PoolVector<uint8_t>::Write w = pv.write();
uint8_t *dataptr = (uint8_t *)data;
copymem(w.ptr(), dataptr + DATA_PAD, data_bytes);
Please review whether or not set or get is correct.
Because this issue seems to be fixable by removing DATA_PAD in set_data()
instead of adding DATA_PAD to get_data(). I have not tested the latter
fix
Fixes #issue, 11873
|
|
|
|
Several visual improvements.
|
|
compatibility.
|
|
Closes #9186
|
|
Added proper label sizing
Improved text editor status bar
Fixed some issues with ItemList and also some style fixes
Added background to color picker samples (the mrcdk fix)
Fixed slider ticks.
Added VS breakpoint and error styleboxes.
|
|
|
|
classes
|
|
|
|
|
|
|
|
Added support for FT_PIXEL_MODE_MONO in FreeType
|
|
Rename user facing methods and variables as well as the corresponding
C++ methods according to the folloming changes:
* pos -> position
* rot -> rotation
* loc -> location
C++ variables are left as is.
|
|
|
|
snapping.
|
|
Renamed function arguments to keep them consistent between declaration and implementation
|
|
implementation
|
|
Add missed bindings for enums
Move some enums to class to have correct output of api.json
|
|
rtl uses styleBoxEmpty as defualt fixes: #11014
|
|
Fix unused variable warnings
|
|
Fix various assorted warnings
|
|
Script access to formatted arrays and blend_arrays in meshes.
|
|
|
|
|
|
The forth in my quest to make Godot 3.x compile with -Werror on GCC7
|
|
Fix various warnings that don't have enough instances to merit
individual commits. Also fixes a potential bug in audio_server.cpp.
|
|
|
|
|
|
|
|
|
|
StyleBoxSupport for RichTextLabel and cleanup for script+docs backgrounds fixes #10685
|
|
grid map loading and editing
|
|
|
|
- simplefied it with using the new rtl.
- removed ("ScriptPanel", "EditorStyles") for since rtl now can be used
- unified backgrounds when script editor color is set to transparent => option to set background color adapt to theme is deprecated.
|
|
|