mirror of
https://github.com/godotengine/godot.git
synced 2025-02-10 04:40:40 +00:00
fixed SpatialEditor::_init_indications. loopcounter "i" used ambiguous
This commit is contained in:
parent
d177e0f64a
commit
dcc93a33fd
@ -3172,11 +3172,11 @@ void SpatialEditor::_init_indicators() {
|
||||
int arrow_sides=6;
|
||||
|
||||
|
||||
for(int i = 0; i < 7 ; i++) {
|
||||
for(int k = 0; k < 7 ; k++) {
|
||||
|
||||
|
||||
Matrix3 ma(ivec,Math_PI*2*float(i)/arrow_sides);
|
||||
Matrix3 mb(ivec,Math_PI*2*float(i+1)/arrow_sides);
|
||||
Matrix3 ma(ivec,Math_PI*2*float(k)/arrow_sides);
|
||||
Matrix3 mb(ivec,Math_PI*2*float(k+1)/arrow_sides);
|
||||
|
||||
|
||||
for(int j=0;j<arrow_points-1;j++) {
|
||||
|
Loading…
Reference in New Issue
Block a user