Search found 2058 matches

by raidho36
Wed Feb 12, 2020 10:11 am
Forum: Support and Development
Topic: [Proposal] Better multimedia formats.
Replies: 36
Views: 39907

Re: [Proposal] Better multimedia formats.

At that point there is no benefit to using animation-supporting format over any other format.
by raidho36
Tue Feb 11, 2020 4:20 pm
Forum: General
Topic: What code editor do you use ?
Replies: 195
Views: 297046

Re: What code editor do you use ?

IDEs are holdover from the times where it was either that or Microsoft Notepad, or worse - Vi. Same as two-panel file managers coming from the times where it was either that or DOS command line. Modern text editors have all the features you might wish for and they don't suffer from being extremely h...
by raidho36
Tue Feb 11, 2020 4:08 pm
Forum: Support and Development
Topic: [Proposal] Better multimedia formats.
Replies: 36
Views: 39907

Re: [Proposal] Better multimedia formats.

I don't believe library size has much to do with anything (see: box2d), it's the licensing and ability to statically link in general, and whether or not it's a duplicate feature. A game engine is not a media player, it doesn't need to support all popular formats, in fact it doesn't needs to support ...
by raidho36
Tue Feb 11, 2020 10:08 am
Forum: Support and Development
Topic: Fixture:GetBoundingBox gives irrational results [SOLVED]
Replies: 2
Views: 3231

Re: Fixture:GetBoundingBox gives irrational results

The obvious solution would be to use proper averaging formula, that being x = ( a + b ) / 2
by raidho36
Mon Feb 10, 2020 7:38 pm
Forum: Support and Development
Topic: [Proposal] Better multimedia formats.
Replies: 36
Views: 39907

Re: [Proposal] Better multimedia formats.

Video-ish image formats are not useful because texture atlases and texture arrays exist.
by raidho36
Mon Feb 10, 2020 7:36 pm
Forum: Support and Development
Topic: [SOLVED] Need help with my vertex shader code
Replies: 3
Views: 5000

Re: Need help with my vertex shader code

You need to use the Z coordinate and perspective projection.
by raidho36
Mon Feb 10, 2020 10:01 am
Forum: Support and Development
Topic: Need help with saving
Replies: 3
Views: 3899

Re: Need help with saving

Yes you should. You shouldn't try to read from uninitalized blank hitboxes though. Programming ain't magic. There's literally nothing that happens without your explicit instruction to do so, in other words, you must issue specific instructions for anything to happen. So pay great mind to what instru...
by raidho36
Mon Feb 10, 2020 7:27 am
Forum: Support and Development
Topic: Need help with saving
Replies: 3
Views: 3899

Re: Need help with saving

When you load a game save you re-create the gamestate from scratch, the same way as you do when you just load a game. The difference is that regular game load uses default values, and save game load uses saved values.
by raidho36
Fri Feb 07, 2020 11:36 am
Forum: Libraries and Tools
Topic: [LIB] utf8string
Replies: 9
Views: 11394

Re: [LIB] utf8string

pgimeno wrote: Fri Feb 07, 2020 9:28 am Never mind, this is easy enough: getmetatable("").__index = string
Well yeah this is what you do but that's not automatic.
by raidho36
Mon Feb 03, 2020 11:37 pm
Forum: Libraries and Tools
Topic: [LIB] utf8string
Replies: 9
Views: 11394

Re: [LIB] utf8string

It seems patterns are not UTF-8 aware. Should've expected that, since the entire system operates on single byte characters.🤦‍♀️ Yeah for pattern matching a simple wrapper will not do, what was I thinking. I can't think of a way to automatically replace strings' metatable when and only when string m...