summaryrefslogtreecommitdiff
path: root/scene
diff options
context:
space:
mode:
Diffstat (limited to 'scene')
-rw-r--r--scene/3d/gi_probe.cpp3
-rw-r--r--scene/animation/skeleton_ik.h2
2 files changed, 2 insertions, 3 deletions
diff --git a/scene/3d/gi_probe.cpp b/scene/3d/gi_probe.cpp
index e3ee53b6e2..1d86575b16 100644
--- a/scene/3d/gi_probe.cpp
+++ b/scene/3d/gi_probe.cpp
@@ -415,7 +415,6 @@ Vector3i GIProbe::get_estimated_cell_size() const {
int longest_axis = bounds.get_longest_axis_index();
axis_cell_size[longest_axis] = 1 << cell_subdiv;
-
for (int i = 0; i < 3; i++) {
if (i == longest_axis)
@@ -431,7 +430,7 @@ Vector3i GIProbe::get_estimated_cell_size() const {
}
}
- return Vector3i(axis_cell_size[0],axis_cell_size[1],axis_cell_size[2]);
+ return Vector3i(axis_cell_size[0], axis_cell_size[1], axis_cell_size[2]);
}
void GIProbe::bake(Node *p_from_node, bool p_create_visual_debug) {
diff --git a/scene/animation/skeleton_ik.h b/scene/animation/skeleton_ik.h
index f14ade2bd4..02d5aba5ba 100644
--- a/scene/animation/skeleton_ik.h
+++ b/scene/animation/skeleton_ik.h
@@ -98,7 +98,7 @@ class FabrikInverseKinematic {
};
public:
- struct Task {
+ struct Task {
RID self;
Skeleton *skeleton;