Skip to content

Commit

Permalink
fix ogzeditor_texrotation preset
Browse files Browse the repository at this point in the history
  • Loading branch information
SalatielSauer committed Dec 29, 2024
1 parent 266b554 commit e6f6406
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/examples/ogzeditor_textrotation.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ geometry(()=>{
let color = 0;
for (let i = 0; i < 19; i++) {
// texts can be rotated on 3 axes: yaw, pitch and roll.
cubes.push(ogzeditor.text(`^f${color}----^f~OGZ Editor----`, 512+(i*5), 512-(i*5), 600-i, 1462, 1, 0, i*10, i*10))
cubes.push(ogzeditor.text(`^f${color}----OGZ Editor----`, 512+(i*5), 512-(i*5), 600-i, 1462, 1, 0, i*10, i*10))
color = color == 8 ? 0 : color+1;
}

Expand Down

0 comments on commit e6f6406

Please sign in to comment.