-
Notifications
You must be signed in to change notification settings - Fork 2
/
init.lua
29 lines (28 loc) · 1010 Bytes
/
init.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
fysiks = {}
local modpath = minetest.get_modpath("fysiks") .. "/"
dofile(modpath .. "TableHelpers.lua")
dofile(modpath .. "Vector.lua")
dofile(modpath .. "Matrix.lua")
dofile(modpath .. "BoundingVolume.lua")
dofile(modpath .. "AABB.lua")
dofile(modpath .. "Polyhedron.lua")
dofile(modpath .. "FacedPolyhedron.lua")
dofile(modpath .. "FullPolyhedron.lua")
dofile(modpath .. "Cuboid.lua")
dofile(modpath .. "Sphere.lua")
dofile(modpath .. "Rigidbody.lua")
dofile(modpath .. "CollisionDetection.lua")
dofile(modpath .. "Constraint.lua")
dofile(modpath .. "ContactConstraint.lua")
dofile(modpath .. "Contact.lua")
dofile(modpath .. "ConstraintSolver.lua")
dofile(modpath .. "BlockCollider.lua")
dofile(modpath .. "BlockColliderManagement.lua")
dofile(modpath .. "EntityColliders.lua")
-- some crappy test cubes
dofile(modpath .. "testObj.lua")
dofile(modpath .. "testObj2.lua")
dofile(modpath .. "testObj3.lua")
dofile(modpath .. "testObj4.lua")
dofile(modpath .. "testObj5.lua")
dofile(modpath .. "woodbox.lua")