We are currently in the process of converting the website to the new design. Some pages, like this one, are still broken. We appreciate your patience.
Mārtiņš Možeiko
If you have access to HH source code on github, you can go there, open file you're interested and …
»
da447m
Hey folks thx for replies. He's doing all the states as 'actual' physics? Like where So basically …
»
Evan Butterfield
You can use to do syntax highlighting for go. However, for it to apply, you need to add it as "tr…
»
Simon Anciaux
I believe ddP is the second derivative of P (position), so it's the acceleration. dP being the vel…
»
da447m
When you say "controller input could have been null" you actually mean input values are 0 because …
»
Mārtiņš Možeiko
When you say "controller input could have been null" you actually mean input values are 0 because …
»
da447m
I'm reading all the Brain structs/funcs. Please tell me if I'm understanding this right. ExecuteBr…
»
Simon Anciaux
In config.4coder you can change the selection mode. The gray cursor is called the mark. It's a dif…
»
Evan Butterfield
Hello, I'm sorry is this is a stupid question, but what is the little gray text cursor that the re…
»
Mārtiņš Možeiko
mtools allows to create fat images and read & write files into it & other manipulations without an…
»
bumbread
A few weeks ago I was working on a tool that creates FAT disk images without requiring loop device…
»
d7samurai
Minimal D3D11 pt2: Follow-up to Minimal D3D11, adding instanced rendering. The main difference he…
»
Oliver Marsh
thanks martins :)
»
Mārtiņš Možeiko
D3D11 has separate sampler state from texture. For sample state you do your regular sampler object…
»
Oliver Marsh
Sorry to bump this again, what's the equivalent to sampler2Darray in d3d11?
»
Macoy Madson
This post is mirrored on my blog. I have been relatively busy lately due to unpacking all my thing…
»
Simon Anciaux
There is this GDC video about the rewind in Braid: The Implementation of Rewind in Braid
»
Mārtiņš Možeiko
To rewind you simply snapshot state after each simulate_physics() call, then you can reset it to a…
»
da447m
Not sure I understand what rewinding has to do with anything here? It is in my OP :) As an extra h…
»
Mārtiņš Možeiko
Not sure I understand what rewinding has to do with anything here? Even with box2d you will see st…
»
da447m
True, but for realistic sim we probably cannot do rewind anyway due to colossal amount of data. In…
»
Mārtiņš Možeiko
The problem is that it won't be so simple to split it like that. If you all movements are linear -…
»
da447m
If you collected all movs during physics, put them in a queue split in halves and draw the queued …
»
Mārtiņš Možeiko
It will update physics every second frame. It won't do "half movements" every frame. Every second …
»
Mārtiņš Možeiko
I'm not aware of compilers doing such optimization. While technically it would be possible, my gue…
»
da447m
You are right, tbh my snippet was messed up, it should've been I think you won't get delayed, beca…
»
Simon Anciaux
This is even worse with the while loop because you perform physics until the whole delta_time is c…
»
da447m
But if there is a frame that for some reason takes 30ms, you'd then do physics for only 16ms and t…
»
Simon Anciaux
I only have limited physics programming experience, so don't take what I say as "the way" to do th…
»
Evan Butterfield
Thank you so much for the fast reply! I'm a bit new and these forums are super helpful.
»