diff options
author | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-03-03 00:21:53 +0300 |
---|---|---|
committer | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-03-03 00:21:53 +0300 |
commit | 4fe7b69c69fa666c162fb1377f1310cd4fb4f485 (patch) | |
tree | 771c7fea4c09b815e967fb03bd458c6485757a83 | |
parent | c48bf2810eeb8d9be1beb5429f3719752e337b77 (diff) |
Second seat adjusted and enabled
-rwxr-xr-x | init.lua | 33 |
1 files changed, 19 insertions, 14 deletions
@@ -14,28 +14,33 @@ advtrains.register_wagon("diesel_lokomotive", { max_speed=10, seats = { { - name=S("Driver Stand (left)"), - attach_offset={x=-3, y=12, z=-2}, - view_offset={x=0, y=3, z=0}, + name = S("Driver Stand (left)"), + attach_offset = {x=-3, y=12, z=-2}, + view_offset = {x=-4, y=3, z=0}, group = "dstand", }, --- { --- name=S("Driver Stand (right)"), --- attach_offset={x=5, y=10, z=-10}, --- view_offset={x=0, y=6, z=0}, --- group = "dstand", --- }, + { + name = S("Trainee Seat (right)"), + attach_offset = {x=3, y=12, z=-2}, + view_offset = {x=4, y=3, z=0}, + group = "tseat", + }, }, seat_groups = { - dstand={ + dstand = { name = "Driver Stand", - access_to = {}, - driving_ctrl_access=true, + access_to = {"tseat"}, + driving_ctrl_access = true, + }, + tseat = { + name = "Trainee Seat", + access_to = {"dstand"}, + driving_ctrl_access = false, }, }, assign_to_seat_group = {"dstand"}, visual_size = {x=1, y=1}, - wagon_span=1.95, + wagon_span = 1.95, collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, update_animation=function(self, velocity) if self.old_anim_velocity~=advtrains.abs_ceil(velocity) then @@ -71,7 +76,7 @@ advtrains.register_wagon("diesel_lokomotive", { }) end, drops={"advtrains:diesel_lokomotive"}, - horn_sound = "advtrains_engine_diesel_horn" + horn_sound = "advtrains_engine_diesel_horn", }, S("Diesel Engine"), "advtrains_engine_diesel_inv.png") advtrains.register_wagon("wagon_gravel", { |