Mercurial > games > semicongine
annotate src/semicongine.nim @ 195:081cf6bd94ba
add: skeleton for resources
author | Sam <sam@basx.dev> |
---|---|
date | Sun, 07 May 2023 01:02:06 +0700 |
parents | 659992f14dd6 |
children | 7f921d7d0a2b |
rev | line source |
---|---|
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
|
1 import semicongine/buildconfig |
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
|
2 export buildconfig |
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 |
83
5e19aead2b61
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
60
diff
changeset
|
5 import semicongine/color |
127 | 6 import semicongine/engine |
116 | 7 import semicongine/entity |
83
5e19aead2b61
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
60
diff
changeset
|
8 import semicongine/events |
116 | 9 import semicongine/gpu_data |
10 import semicongine/math | |
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 |
116 | 15 import semicongine/platform/window |
16 import semicongine/vulkan | |
56
94d7eed3f118
did: cleanup main namespace, add: better coordinate handling in input example
Sam <sam@basx.dev>
parents:
diff
changeset
|
17 |
167
4d4f7a2eb6ca
add: initial implementation of audio subsystem with mixer, currently missing windows implementation
Sam <sam@basx.dev>
parents:
128
diff
changeset
|
18 export audio |
83
5e19aead2b61
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
60
diff
changeset
|
19 export color |
127 | 20 export engine |
116 | 21 export entity |
83
5e19aead2b61
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
60
diff
changeset
|
22 export events |
116 | 23 export gpu_data |
24 export math | |
56
94d7eed3f118
did: cleanup main namespace, add: better coordinate handling in input example
Sam <sam@basx.dev>
parents:
diff
changeset
|
25 export mesh |
128
9901ec3831d1
did: finish refactoring of render pipeline, yipi! :)
Sam <sam@basx.dev>
parents:
127
diff
changeset
|
26 export renderer |
195 | 27 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
|
28 export settings |
60
c57285d292b6
did: deep refactoring of handling vertrex attribute and buffer updates, don't ask ;(
Sam <sam@basx.dev>
parents:
56
diff
changeset
|
29 export window |
116 | 30 export vulkan |