Alexander Hunt

Results 17 comments of Alexander Hunt

@sschmid This looks cool. Will you allow multiple instances of the simulation. EDIT: Also, Will you write a tiny code generator to go with it. i.e. "Atomic" code gen ;)

In this code ``` [EcsSystem(allOf: new[] {Position, Velocity})] void Move(int entity, ref Vector3 position, ref Vector3 velocity) { SetPosition(entity, position + velocity); } ``` rather than specifiying Position and Velocity...

@davoodkharmanzar It's still private as far as I know. I just ended up writing my own for a project although written in golang, you could do the same too if...

what's wrong with a wait command? ``` **/*.go !**/*_test.go { prep: go build ./cmd/myapp daemon: ./myapp -listen :8080 wait: 2s daemon: devd -w 'assets/**/*' -w 'templates/**/*' http://localhost:8080 } ```

Yep. Just tested it with mine, works great: ``` **/*.go www/*.css www/*.html { prep: go build -o ./cmd/inkpad/inkpad ./cmd/inkpad/main.go daemon +sigterm: ./cmd/inkpad/inkpad } www/*.css www/*.html cmd/inkpad/inkpad { prep: make generate...

@lunarcloud @WolvenBard actually this is something I’d like in the inky editor, not the web export.

I'm writing a port for golang atm and don't know how this runtime works so I'm really depending on there being enough (good) tests... A specification would indeed be nice....

@vincentkerdraon Wow, cool project and It looks like it works which is more than I can say for mine (which is not public yet). My implementation is very early (even...

@tcannonfodder @smwhr I think the ink runtime itself could serve as a specification in and of itself if we clean up the codebase and wrote up additional unit tests for...

@vincentkerdraon I've created the project, you can find it here: https://github.com/SirMetathyst/go-ink