35 lines
No EOL
682 B
Lua
35 lines
No EOL
682 B
Lua
MODULE.Model = "models/police.mdl"
|
|
MODULE.BoneList =
|
|
{
|
|
"ValveBiped.Bip01_Pelvis",
|
|
"ValveBiped.Bip01_Spine2",
|
|
"ValveBiped.Bip01_Head1",
|
|
"ValveBiped.Bip01_R_Upperarm",
|
|
"ValveBiped.Bip01_R_Forearm",
|
|
"ValveBiped.Bip01_R_Hand",
|
|
"ValveBiped.Bip01_L_Upperarm",
|
|
"ValveBiped.Bip01_L_Forearm",
|
|
"ValveBiped.Bip01_L_Hand",
|
|
"ValveBiped.Bip01_R_Thigh",
|
|
"ValveBiped.Bip01_R_Calf",
|
|
"ValveBiped.Bip01_R_Foot",
|
|
"ValveBiped.Bip01_L_Thigh",
|
|
"ValveBiped.Bip01_L_Calf",
|
|
"ValveBiped.Bip01_L_Foot"
|
|
}
|
|
|
|
function MODULE:Init()
|
|
|
|
end
|
|
|
|
function MODULE:Think()
|
|
|
|
end
|
|
|
|
function MODULE:PhysicsCollide(ent, data)
|
|
|
|
end
|
|
|
|
function MODULE:PhysicsSimulate(phys, dt)
|
|
|
|
end |