Implementing starfall version of engine
This commit is contained in:
16
koptilnya/engine/clutch.txt
Normal file
16
koptilnya/engine/clutch.txt
Normal file
@@ -0,0 +1,16 @@
|
||||
Clutch = class("Clutch")
|
||||
|
||||
function Clutch:initialize(options)
|
||||
options = options or {}
|
||||
|
||||
self.stiffness = options.Stiffness or 0
|
||||
self.capacity = options.Capacity or 0
|
||||
self.damping = options.Damping or 0
|
||||
|
||||
self._engine = options.Engine
|
||||
self._gearbox = options.Gearbox
|
||||
end
|
||||
|
||||
function Clutch:update()
|
||||
|
||||
end
|
||||
Reference in New Issue
Block a user