eyes, smooth head, and bouncy moving :)
6
scripts/bouncy.lua
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
local squapi = require("scripts.libs.SquAPI")
|
||||||
|
|
||||||
|
squapi.bounceWalk:new(
|
||||||
|
models.models.main,
|
||||||
|
nil
|
||||||
|
)
|
||||||
28
scripts/eyes.lua
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
local squapi = require("scripts.libs.SquAPI")
|
||||||
|
|
||||||
|
-- eye aim
|
||||||
|
|
||||||
|
squapi.eye:new(
|
||||||
|
models.models.main.Head.Eyes["Left Eye"],
|
||||||
|
0.25,
|
||||||
|
0.75,
|
||||||
|
0.5,
|
||||||
|
0.5
|
||||||
|
)
|
||||||
|
|
||||||
|
squapi.eye:new(
|
||||||
|
models.models.main.Head.Eyes["Right Eye"],
|
||||||
|
0.75,
|
||||||
|
0.25,
|
||||||
|
0.5,
|
||||||
|
0.5
|
||||||
|
)
|
||||||
|
|
||||||
|
-- blink
|
||||||
|
|
||||||
|
squapi.randimation:new(
|
||||||
|
animations["models.main"].blink,
|
||||||
|
70,
|
||||||
|
150,
|
||||||
|
nil
|
||||||
|
)
|
||||||
|
|
@ -1,7 +1,10 @@
|
||||||
events.ENTITY_INIT:register(function ()
|
events.ENTITY_INIT:register(function ()
|
||||||
|
require("scripts.bouncy")
|
||||||
|
require("scripts.eyes")
|
||||||
require("scripts.model")
|
require("scripts.model")
|
||||||
require("scripts.nameplate")
|
require("scripts.nameplate")
|
||||||
require("scripts.physics")
|
require("scripts.physics")
|
||||||
|
require("scripts.smooth_head")
|
||||||
require("scripts.soggy")
|
require("scripts.soggy")
|
||||||
require("scripts.wheels.main")
|
require("scripts.wheels.main")
|
||||||
end)
|
end)
|
||||||
|
|
|
||||||
5
scripts/smooth_head.lua
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
local squapi = require("scripts.libs.SquAPI")
|
||||||
|
|
||||||
|
squapi.smoothHead:new({
|
||||||
|
models.models.main.Head
|
||||||
|
})
|
||||||
|
Before Width: | Height: | Size: 739 B After Width: | Height: | Size: 781 B |
BIN
textures/extras_e.png
Normal file
|
After Width: | Height: | Size: 210 B |
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 134 B After Width: | Height: | Size: 179 B |