Tomasz Chabora

Results 931 comments of Tomasz Chabora

What's even a point in exporting both, or the Mac font at all? I assumed they were different, but I can open the "Mac version" just fine on Windows and...

I still think that Mac fonts should be optional. I have to delete them every single time I export my font, because I just don't use them.

3 years later, another proposal (this time a more legit one) surfaced: https://github.com/godotengine/godot-proposals/issues/1330

Some minimal code would go like this: ```ruby if !@map @map = record(32, 32) do 200.times{@tile_image.draw(0, 0, 0)} end else @map.draw(0, 0, 0) #this line uses CPU end ``` The...

I didn't notice anything strange in other games.

Nevermind, seems like it fixed itself, lol EDIT: Actually it didn't and seems to break randomly, but whatever ;_;

Um, not sure if I should write in closed issue or open a new one, but the problem persists >_> I thought it was fixed, but it seems like it...

I'm thinking about implementing a generic solution for all editor plugins: https://github.com/godotengine/godot-proposals/issues/2153#issuecomment-1132753452 It would handle scripts, shaders and everything.

`AnimatedTexture` can't really get new features, because it does the animation on the GPU and also it doesn't support texture atlases, unlike AnimatedSprite. They are 2 completely different things.