Albert

Results 19 comments of Albert

same when trying models from [readyplayer.me](https://readyplayer.me/)

I think it would also be useful to be able to rotate a voxel sides colors in voxelset editor

Hi that was my proposal BTW:) https://github.com/godotengine/godot-proposals/issues/2421 And I love that feature. I think the Create project dialog should create new folder automatically, I always create it. Isn't the project...

All tool scripts should be disabled too. I've just opened Cyclops editor in godot 4.1 and I've got thousands of errors from `_process() `. They spammed so often that I...

```gdscript var [positions:, angles:PoolRealArray] = node.get_points() ``` which means `positions` is inferred

hmm .. In case vars can be declared earlier (in other lines) then I see this like: ```gdscript [a, b, c] = x #a,b,c were declared earlier [var a, var...

Do I understand correctly that the implementation of this proposal would allow to implement ```gdscript for item, value in enumerate(array) ``` and ```gdscript for key, value in dict.items() ``` ?...

private methods are vital when creating plugins. I also vote for the implementation of the protected methods in gdscript