Mercurial > games > semicongine
annotate src/semicongine.nim @ 818:2fb719f13a98
allow more openArrays, better debug output, better default exports
author | Sam <sam@basx.dev> |
---|---|
date | Sat, 23 Sep 2023 22:10:33 +0700 |
parents | 893ec0fbfd44 |
children | 857cd931d24b |
rev | line source |
---|---|
818
2fb719f13a98
allow more openArrays, better debug output, better default exports
Sam <sam@basx.dev>
parents:
783
diff
changeset
|
1 import std/tables |
2fb719f13a98
allow more openArrays, better debug output, better default exports
Sam <sam@basx.dev>
parents:
783
diff
changeset
|
2 export tables # necessary to use some features without weird compilation error |
2fb719f13a98
allow more openArrays, better debug output, better default exports
Sam <sam@basx.dev>
parents:
783
diff
changeset
|
3 |
667
d3500ae5d235
did: small refactoring of module structure
Sam <sam@basx.dev>
parents:
656
diff
changeset
|
4 import semicongine/core |
d3500ae5d235
did: small refactoring of module structure
Sam <sam@basx.dev>
parents:
656
diff
changeset
|
5 export core |
653
ac7dfbd56cc6
add: textures now support in shader via scene data, also: improved config handling a bit, more to come
Sam <sam@basx.dev>
parents:
628
diff
changeset
|
6 |
628
c2f04f016104
add: initial implementation of audio subsystem with mixer, currently missing windows implementation
Sam <sam@basx.dev>
parents:
589
diff
changeset
|
7 import semicongine/audio |
749
0b5566fc214d
add: what seems like a working animation system, atm integrated with entities, will add more for meshes
Sam <sam@basx.dev>
parents:
736
diff
changeset
|
8 import semicongine/animation |
588 | 9 import semicongine/engine |
736 | 10 import semicongine/collision |
708 | 11 import semicongine/scene |
544
c3c772512e7c
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
521
diff
changeset
|
12 import semicongine/events |
517
836790efab48
did: cleanup main namespace, add: better coordinate handling in input example
Sam <sam@basx.dev>
parents:
diff
changeset
|
13 import semicongine/mesh |
589
b434feaf2b67
did: finish refactoring of render pipeline, yipi! :)
Sam <sam@basx.dev>
parents:
588
diff
changeset
|
14 import semicongine/renderer |
656 | 15 import semicongine/resources |
653
ac7dfbd56cc6
add: textures now support in shader via scene data, also: improved config handling a bit, more to come
Sam <sam@basx.dev>
parents:
628
diff
changeset
|
16 import semicongine/settings |
724
70d9147415b8
add: some api improvments, preparing for font-loading
Sam <sam@basx.dev>
parents:
708
diff
changeset
|
17 import semicongine/text |
577 | 18 import semicongine/platform/window |
19 import semicongine/vulkan | |
517
836790efab48
did: cleanup main namespace, add: better coordinate handling in input example
Sam <sam@basx.dev>
parents:
diff
changeset
|
20 |
628
c2f04f016104
add: initial implementation of audio subsystem with mixer, currently missing windows implementation
Sam <sam@basx.dev>
parents:
589
diff
changeset
|
21 export audio |
749
0b5566fc214d
add: what seems like a working animation system, atm integrated with entities, will add more for meshes
Sam <sam@basx.dev>
parents:
736
diff
changeset
|
22 export animation |
588 | 23 export engine |
736 | 24 export collision |
708 | 25 export scene |
544
c3c772512e7c
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
521
diff
changeset
|
26 export events |
517
836790efab48
did: cleanup main namespace, add: better coordinate handling in input example
Sam <sam@basx.dev>
parents:
diff
changeset
|
27 export mesh |
589
b434feaf2b67
did: finish refactoring of render pipeline, yipi! :)
Sam <sam@basx.dev>
parents:
588
diff
changeset
|
28 export renderer |
656 | 29 export resources |
653
ac7dfbd56cc6
add: textures now support in shader via scene data, also: improved config handling a bit, more to come
Sam <sam@basx.dev>
parents:
628
diff
changeset
|
30 export settings |
724
70d9147415b8
add: some api improvments, preparing for font-loading
Sam <sam@basx.dev>
parents:
708
diff
changeset
|
31 export text |
521
a25325bec7f2
did: deep refactoring of handling vertrex attribute and buffer updates, don't ask ;(
Sam <sam@basx.dev>
parents:
517
diff
changeset
|
32 export window |
577 | 33 export vulkan |