Alan
Alan
Just reporting that coolreader.org apparently is parked by some domains company and also causes both Firefox and my AV to complain: 
I've found a pretty serious showstopping bug; consider the following SSCCE: ```C# using AtomicEngine; public class Game : AppDelegate { public static Input input; private Scene scene; public override void...
Navigation works on the XZ plane, and 2D physics works on the XY plane, thus making them fully unusable together, what could be useful for planar 2D top-down games like...
CSComponent has these magic callbacks like `Start()` and `Update(float dt)` that you gotta blindly implement, the problem is, if for some reason the signature doesn't match, you have a situation...
I just found out something very weird when doing the steps I describe in this wiki page: https://github.com/AtomicGameEngine/AtomicGameEngine/wiki/C%23-project-using-the-engine-as-a-library If you don't enable this:  The application crashes on startup... the...
You can't have an initialization method in a CSComponent that initializes variables that you access in Update() because it's called once at the constructor before you have the chance to...
When I try to debug an error in which I'm accessing a null reference somewhere in a CSComponent, the only stack trace I get points only to that line with...
# **OK the Impostors are usable already, this is pretty much the only tasks that matters at this point:** - [ ] **Make an ImpostorManager component that creates/manages the ImpostorChunk...
Hello there. I was implementing binary serialization but when I was halfway into it I realized the AbstractFile (which inherits both Serializer and Deserializer) and superclasses aren't bound yet, on...
Hi there. When you create a collision shape, say: ```C# CollisionShape shape = child.CreateComponent(); shape.ShapeType = ShapeType.Box; ``` the shape size is `1,1,1`, although the shape doesn't show in the...