Remove inheritances, component implementation
This commit is contained in:
parent
748644b220
commit
20835586ab
15 changed files with 375 additions and 229 deletions
2
make.py
2
make.py
|
|
@ -36,7 +36,7 @@ def main():
|
|||
for shader_path in (
|
||||
list(src_opengl_shader_path.rglob('*.vert'))
|
||||
+ list(src_opengl_shader_path.rglob('*.frag'))):
|
||||
out_path = (Config.BIN_DIR / shader_path.relative_to(Config.SOURCE_DIR))
|
||||
out_path = Config.BIN_DIR / shader_path.relative_to(Config.SOURCE_DIR)
|
||||
if not out_path.parent.exists():
|
||||
out_path.parent.mkdir(parents=True)
|
||||
shutil.copy(shader_path, out_path)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue