Age | Commit message (Collapse) | Author |
|
Fixes SoftBody3D culling issues.
|
|
Expose EYE_OFFSET to gdshader code
|
|
Avoid leaking texture->tex_id when clearing render targets
|
|
Replace Extents with Size in VoxelGI, ReflectionProbe, FogVolume, Decal and GPUParticles*3D
|
|
|
|
|
|
GPUParticles*3D
- Extents are replaced by Size (Size is Extents * 2)
- The UI text displays 'Size'
- Snapping is adjusted to work with Size
- _set and _get handle extents for compatibility
Co-authored-by: ator-dev <dominic.codedeveloper@gmail.com>
|
|
* Only two texture import modes for low/high quality now:
* S3TC/BPTC
* ETC2/ASTC
* Makes sense given this is the general preferred and most compatible combination in most platforms.
* Removed lossy_quality from VRAM texture compression options. It was unused everywhere.
* Added a new "high_quality" option to texture import. When enabled, it uses BPTC/ASTC (BC7/ASTC4x4) instead of S3TC/ETC2 (DXT1-5/ETC2,ETCA).
* Changed MacOS export settings so required texture formats depend on the architecture selected.
This solves the following problems:
* Makes it simpler to import textures as high quality, without having to worry about the specific format used.
* As the editor can now run on platforms such as web, Mac OS with Apple Silicion and Android, it should no longer be assumed that S3TC/BPTC is available by default for it.
|
|
|
|
Also error when using instance uniforms
|
|
Make screen texture and depth texture work in Multiview
|
|
|
|
|
|
|
|
Also implement sort_offset for decals
Co-authored-by: Hugo Locurcio <hugo.locurcio@hugo.pro>
|
|
in favour of texture hints
|
|
texture swizzling
While using compressed formats is allowed, the RA_AS_RG formats need texture swizzling which is not available on web
|
|
Improving communication of scaling settings to renderer implementation
|
|
|
|
|
|
This commit adds support for FORMAT_EXT2_RA_AS_RG and
FORMAT_DXT5_RA_AS_RG with OpenGL, fixing VRAM compression with the
normal map option enabled.
|
|
|
|
As many open source projects have started doing it, we're removing the
current year from the copyright notice, so that we don't need to bump
it every year.
It seems like only the first year of publication is technically
relevant for copyright notices, and even that seems to be something
that many companies stopped listing altogether (in a version controlled
codebase, the commits are a much better source of date of publication
than a hardcoded copyright statement).
We also now list Godot Engine contributors first as we're collectively
the current maintainers of the project, and we clarify that the
"exclusive" copyright of the co-founders covers the timespan before
opensourcing (their further contributions are included as part of Godot
Engine contributors).
Also fixed "cf." Frenchism - it's meant as "refer to / see".
|
|
This is necessary as the scene shader still uses alpha in this case so we can't discard fragments that weren't written to the depth buffer
|
|
|
|
Remove mesh bone_aabbs as they are not used anywhere and calculating them is a pain
|
|
Implement render_target_was_used API so that Viewports can properly check if they have been used.
|
|
Transform sdf xfrom by particle emission transform when particles are in global space
|
|
Cache mesh AABB when modified by skeleton and update instance AABB when skeleton changes
|
|
global space
|
|
they have been used.
For the RD renderer, this does not work for Viewports used in scene shaders yet
|
|
Use instanced array buffer instead of UBO for canvas item batching
|
|
fixed https://github.com/godotengine/godot/issues/69949
|
|
This simplifies the generated shader code which increases both performance and compile time on low end devices
|
|
|
|
|
|
a pain
|
|
skeleton changes
|
|
Properly free Skeleton RID in RenderingServer.free()
|
|
|
|
Fix AABB errors on meshes with bones on multiple surfaces
|
|
|
|
|
|
Get WebXR fully working in Godot 4!
|
|
|
|
This uses a similar multipass approach to blend shapes
as Godot 3.x, the major difference here is that we
need to convert the normals and tangents to octahedral
for rendering.
Skeletons work the same as the Vulkan renderer except the bones
are stored in a texture as they were in 3.x.
|
|
|
|
Add GPUParticles to the OpenGL3 renderer.
|
|
Implement is_animated and casts_shadows
|
|
This includes collision (2D SDF, Box, Sphere, Heightmap),
attraction (Box, Sphere), and all sorting modes.
This does not include 3D SDF collisions, trails, or
manual emission.
|