mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Merge pull request #72075 from Maran23/extents-to-size
Replace Extents with Size in VoxelGI, ReflectionProbe, FogVolume, Decal and GPUParticles*3D
This commit is contained in:
commit
3eb1ac9fd2
55 changed files with 573 additions and 371 deletions
|
@ -541,7 +541,7 @@ public:
|
|||
virtual void reflection_probe_set_ambient_color(RID p_probe, const Color &p_color) = 0;
|
||||
virtual void reflection_probe_set_ambient_energy(RID p_probe, float p_energy) = 0;
|
||||
virtual void reflection_probe_set_max_distance(RID p_probe, float p_distance) = 0;
|
||||
virtual void reflection_probe_set_extents(RID p_probe, const Vector3 &p_extents) = 0;
|
||||
virtual void reflection_probe_set_size(RID p_probe, const Vector3 &p_size) = 0;
|
||||
virtual void reflection_probe_set_origin_offset(RID p_probe, const Vector3 &p_offset) = 0;
|
||||
virtual void reflection_probe_set_as_interior(RID p_probe, bool p_enable) = 0;
|
||||
virtual void reflection_probe_set_enable_box_projection(RID p_probe, bool p_enable) = 0;
|
||||
|
@ -561,7 +561,7 @@ public:
|
|||
};
|
||||
|
||||
virtual RID decal_create() = 0;
|
||||
virtual void decal_set_extents(RID p_decal, const Vector3 &p_extents) = 0;
|
||||
virtual void decal_set_size(RID p_decal, const Vector3 &p_size) = 0;
|
||||
virtual void decal_set_texture(RID p_decal, DecalTexture p_type, RID p_texture) = 0;
|
||||
virtual void decal_set_emission_energy(RID p_decal, float p_energy) = 0;
|
||||
virtual void decal_set_albedo_mix(RID p_decal, float p_mix) = 0;
|
||||
|
@ -750,7 +750,7 @@ public:
|
|||
};
|
||||
|
||||
virtual void fog_volume_set_shape(RID p_fog_volume, FogVolumeShape p_shape) = 0;
|
||||
virtual void fog_volume_set_extents(RID p_fog_volume, const Vector3 &p_extents) = 0;
|
||||
virtual void fog_volume_set_size(RID p_fog_volume, const Vector3 &p_size) = 0;
|
||||
virtual void fog_volume_set_material(RID p_fog_volume, RID p_material) = 0;
|
||||
|
||||
/* VISIBILITY NOTIFIER API */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue