Mercurial > games > semicongine
annotate src/semicongine.nim @ 656:f06a781e798d
add: skeleton for resources
author | Sam <sam@basx.dev> |
---|---|
date | Sun, 07 May 2023 01:02:06 +0700 |
parents | ac7dfbd56cc6 |
children | 7f921d7d0a2b |
rev | line source |
---|---|
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
|
1 import semicongine/buildconfig |
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
|
2 export buildconfig |
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
|
3 |
628
c2f04f016104
add: initial implementation of audio subsystem with mixer, currently missing windows implementation
Sam <sam@basx.dev>
parents:
589
diff
changeset
|
4 import semicongine/audio |
544
c3c772512e7c
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
521
diff
changeset
|
5 import semicongine/color |
588 | 6 import semicongine/engine |
577 | 7 import semicongine/entity |
544
c3c772512e7c
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
521
diff
changeset
|
8 import semicongine/events |
577 | 9 import semicongine/gpu_data |
10 import semicongine/math | |
517
836790efab48
did: cleanup main namespace, add: better coordinate handling in input example
Sam <sam@basx.dev>
parents:
diff
changeset
|
11 import semicongine/mesh |
589
b434feaf2b67
did: finish refactoring of render pipeline, yipi! :)
Sam <sam@basx.dev>
parents:
588
diff
changeset
|
12 import semicongine/renderer |
656 | 13 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
|
14 import semicongine/settings |
577 | 15 import semicongine/platform/window |
16 import semicongine/vulkan | |
517
836790efab48
did: cleanup main namespace, add: better coordinate handling in input example
Sam <sam@basx.dev>
parents:
diff
changeset
|
17 |
628
c2f04f016104
add: initial implementation of audio subsystem with mixer, currently missing windows implementation
Sam <sam@basx.dev>
parents:
589
diff
changeset
|
18 export audio |
544
c3c772512e7c
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
521
diff
changeset
|
19 export color |
588 | 20 export engine |
577 | 21 export entity |
544
c3c772512e7c
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
521
diff
changeset
|
22 export events |
577 | 23 export gpu_data |
24 export math | |
517
836790efab48
did: cleanup main namespace, add: better coordinate handling in input example
Sam <sam@basx.dev>
parents:
diff
changeset
|
25 export mesh |
589
b434feaf2b67
did: finish refactoring of render pipeline, yipi! :)
Sam <sam@basx.dev>
parents:
588
diff
changeset
|
26 export renderer |
656 | 27 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
|
28 export settings |
521
a25325bec7f2
did: deep refactoring of handling vertrex attribute and buffer updates, don't ask ;(
Sam <sam@basx.dev>
parents:
517
diff
changeset
|
29 export window |
577 | 30 export vulkan |