Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ported the WHOLE game to vitrix engine #53

Merged
merged 9 commits into from
May 14, 2022
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ vitrix/lib/items/__pycache__/
vitrix/lib/UI/__pycache__/
vitrix/lib/entities/__pycache__/
vitrix/test.py
vitrix_engine.egg-info/
venvs-config/
data.txt
build/
Expand Down
6 changes: 1 addition & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,2 @@
panda3d==1.10.11
panda3d-gltf==0.13
panda3d-simplepbr==0.10
Pillow==9.1.0
ursina==4.1.1
git+https://github.com/ShadityZ/Vitrix-Engine.git@v1.0#egg=vitrix_engine
venvctl==1.4.12
42 changes: 42 additions & 0 deletions vitrix/assets/models/cube.obj
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Blender v3.0.1 OBJ File: 'cube.blend'
# www.blender.org
mtllib cube.mtl
o Cube
v 0.500000 -0.500000 -0.500000
v 0.500000 -0.500000 0.500000
v -0.500000 -0.500000 0.500000
v -0.500000 -0.500000 -0.500000
v 0.500000 0.500000 -0.500000
v 0.500000 0.500000 0.500000
v -0.500000 0.500000 0.500000
v -0.500000 0.500000 -0.500000
vt 1.000000 1.000000
vt 1.000000 0.000000
vt -0.000000 0.000000
vt 0.000000 1.000000
vt 1.000000 1.000000
vt 0.000000 1.000000
vt -0.000000 0.000000
vt 1.000000 -0.000000
vt 1.000000 0.000000
vt -0.000000 1.000000
vt 0.000000 0.000000
vt 1.000000 1.000000
vt -0.000000 1.000000
vt 1.000000 1.000000
vt 1.000000 0.000000
vt 0.000000 0.000000
vn 0.0000 -1.0000 0.0000
vn 0.0000 1.0000 0.0000
vn 1.0000 0.0000 0.0000
vn -0.0000 -0.0000 1.0000
vn -1.0000 -0.0000 -0.0000
vn 0.0000 0.0000 -1.0000
usemtl Material
s off
f 1/1/1 2/2/1 3/3/1 4/4/1
f 5/5/2 8/6/2 7/7/2 6/8/2
f 1/9/3 5/5/3 6/10/3 2/11/3
f 2/2/4 6/12/4 7/13/4 3/3/4
f 3/3/5 7/13/5 8/14/5 4/15/5
f 5/5/6 1/9/6 4/16/6 8/6/6
17 changes: 17 additions & 0 deletions vitrix/assets/models/quad.obj
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Blender v3.0.1 OBJ File: 'quad.blend'
# www.blender.org
mtllib quad.mtl
o Cube
v 0.500000 -0.500000 0.000000
v -0.500000 -0.500000 0.000000
v 0.500000 0.500000 0.000000
v -0.500000 0.500000 0.000000
vt 0.999900 0.999900
vt 0.000100 0.999900
vt 0.000100 0.000100
vt 0.999900 0.000100
vn 0.0000 0.0000 1.0000
usemtl Material
s off
f 3/1/1 4/2/1 2/3/1
f 1/4/1 3/1/1 2/3/1
Loading