Mercurial > games > semicongine
annotate src/semicongine.nim @ 315:4921ec86dcb4
did: preparations to refactor material system, still tons to do
author | Sam <sam@basx.dev> |
---|---|
date | Sun, 23 Jul 2023 19:59:47 +0700 |
parents | 5af702c95b16 |
children | 6dab370d1758 |
rev | line source |
---|---|
206
7f921d7d0a2b
did: small refactoring of module structure
Sam <sam@basx.dev>
parents:
195
diff
changeset
|
1 import semicongine/core |
7f921d7d0a2b
did: small refactoring of module structure
Sam <sam@basx.dev>
parents:
195
diff
changeset
|
2 export core |
192
659992f14dd6
add: textures now support in shader via scene data, also: improved config handling a bit, more to come
Sam <sam@basx.dev>
parents:
167
diff
changeset
|
3 |
167
4d4f7a2eb6ca
add: initial implementation of audio subsystem with mixer, currently missing windows implementation
Sam <sam@basx.dev>
parents:
128
diff
changeset
|
4 import semicongine/audio |
288
5af702c95b16
add: what seems like a working animation system, atm integrated with entities, will add more for meshes
Sam <sam@basx.dev>
parents:
275
diff
changeset
|
5 import semicongine/animation |
127 | 6 import semicongine/engine |
275 | 7 import semicongine/collision |
247 | 8 import semicongine/scene |
83
5e19aead2b61
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
60
diff
changeset
|
9 import semicongine/events |
315
4921ec86dcb4
did: preparations to refactor material system, still tons to do
Sam <sam@basx.dev>
parents:
288
diff
changeset
|
10 import semicongine/material |
56
94d7eed3f118
did: cleanup main namespace, add: better coordinate handling in input example
Sam <sam@basx.dev>
parents:
diff
changeset
|
11 import semicongine/mesh |
128
9901ec3831d1
did: finish refactoring of render pipeline, yipi! :)
Sam <sam@basx.dev>
parents:
127
diff
changeset
|
12 import semicongine/renderer |
195 | 13 import semicongine/resources |
192
659992f14dd6
add: textures now support in shader via scene data, also: improved config handling a bit, more to come
Sam <sam@basx.dev>
parents:
167
diff
changeset
|
14 import semicongine/settings |
263
d1ee2a815fa1
add: some api improvments, preparing for font-loading
Sam <sam@basx.dev>
parents:
247
diff
changeset
|
15 import semicongine/text |
116 | 16 import semicongine/platform/window |
17 import semicongine/vulkan | |
56
94d7eed3f118
did: cleanup main namespace, add: better coordinate handling in input example
Sam <sam@basx.dev>
parents:
diff
changeset
|
18 |
167
4d4f7a2eb6ca
add: initial implementation of audio subsystem with mixer, currently missing windows implementation
Sam <sam@basx.dev>
parents:
128
diff
changeset
|
19 export audio |
288
5af702c95b16
add: what seems like a working animation system, atm integrated with entities, will add more for meshes
Sam <sam@basx.dev>
parents:
275
diff
changeset
|
20 export animation |
127 | 21 export engine |
275 | 22 export collision |
247 | 23 export scene |
83
5e19aead2b61
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
60
diff
changeset
|
24 export events |
315
4921ec86dcb4
did: preparations to refactor material system, still tons to do
Sam <sam@basx.dev>
parents:
288
diff
changeset
|
25 export material |
56
94d7eed3f118
did: cleanup main namespace, add: better coordinate handling in input example
Sam <sam@basx.dev>
parents:
diff
changeset
|
26 export mesh |
128
9901ec3831d1
did: finish refactoring of render pipeline, yipi! :)
Sam <sam@basx.dev>
parents:
127
diff
changeset
|
27 export renderer |
195 | 28 export resources |
192
659992f14dd6
add: textures now support in shader via scene data, also: improved config handling a bit, more to come
Sam <sam@basx.dev>
parents:
167
diff
changeset
|
29 export settings |
263
d1ee2a815fa1
add: some api improvments, preparing for font-loading
Sam <sam@basx.dev>
parents:
247
diff
changeset
|
30 export text |
60
c57285d292b6
did: deep refactoring of handling vertrex attribute and buffer updates, don't ask ;(
Sam <sam@basx.dev>
parents:
56
diff
changeset
|
31 export window |
116 | 32 export vulkan |