Improve Lua ECS
Querying resources from Views is now possible:
local view = View.new(Transform, WorldTransform, Res(DeltaTime))
local res = world:view_query(view)
for entity, transform, world_tran,…
Improve Lua ECS
Figured out the majority of the new ecs api. Now I need to add support for querying resources from the world, alongside the components of an entity.
Here's a short code example that does the…
Expose structs to Lua and write Lua type annotations
b2d259ac71
Merge pull request 'Expose structs to Lua and write Lua type annotations' (#28) from feat/lua-type-defs into main
d001e136d0
lua: expose WorldTransform
d0e6fc6ecd
lua: make it easier to expose events and asset handle wrappers
6a47cd2671
lua: expose DeviceEvent
8e56ee1f0f
lua: start exposing events
Expose structs to Lua and write Lua type annotations