mirror of
				https://github.com/APercy/automobiles_pck
				synced 2025-10-30 19:53:07 +01:00 
			
		
		
		
	coupe changed to a DMC Delorean
This commit is contained in:
		
							parent
							
								
									577421f716
								
							
						
					
					
						commit
						7972506b4a
					
				| @ -7,4 +7,4 @@ This mod adds a coupe automobile to Minetest. | |||||||
| - Media: Model adapted from car assets v1 made by https://www.racoon-media.nl; licence CC0 | - Media: Model adapted from car assets v1 made by https://www.racoon-media.nl; licence CC0 | ||||||
| 
 | 
 | ||||||
| ## Screenshot | ## Screenshot | ||||||
|  |  | ||||||
|  | |||||||
| @ -2,6 +2,65 @@ | |||||||
| -- entity | -- entity | ||||||
| -- | -- | ||||||
| 
 | 
 | ||||||
|  | local old_entities = {"automobiles_coupe:steering"} | ||||||
|  | for _,entity_name in ipairs(old_entities) do | ||||||
|  |     minetest.register_entity(":"..entity_name, { | ||||||
|  |         on_activate = function(self, staticdata) | ||||||
|  |             self.object:remove() | ||||||
|  |         end, | ||||||
|  |     }) | ||||||
|  | end | ||||||
|  | 
 | ||||||
|  | minetest.register_entity('automobiles_coupe:wheel',{ | ||||||
|  | initial_properties = { | ||||||
|  | 	physical = false, | ||||||
|  | 	collide_with_objects=false, | ||||||
|  | 	pointable=false, | ||||||
|  | 	visual = "mesh", | ||||||
|  | 	mesh = "automobiles_coupe_wheel.b3d", | ||||||
|  |     backface_culling = false, | ||||||
|  | 	textures = {"automobiles_black.png", "automobiles_metal.png", "automobiles_coupe_wheel.png"}, | ||||||
|  | 	}, | ||||||
|  | 
 | ||||||
|  |     on_activate = function(self,std) | ||||||
|  | 	    self.sdata = minetest.deserialize(std) or {} | ||||||
|  | 	    if self.sdata.remove then self.object:remove() end | ||||||
|  |     end, | ||||||
|  | 
 | ||||||
|  |     get_staticdata=function(self) | ||||||
|  |       self.sdata.remove=true | ||||||
|  |       return minetest.serialize(self.sdata) | ||||||
|  |     end, | ||||||
|  | 
 | ||||||
|  | }) | ||||||
|  | 
 | ||||||
|  | minetest.register_entity('automobiles_coupe:normal_kit',{ | ||||||
|  | initial_properties = { | ||||||
|  | 	physical = true, | ||||||
|  | 	collide_with_objects=true, | ||||||
|  |     collisionbox = {-0.5, 0, -0.5, 0.5, 1, 0.5}, | ||||||
|  | 	pointable=false, | ||||||
|  | 	visual = "mesh", | ||||||
|  | 	mesh = "automobiles_coupe_normal_kit.b3d", | ||||||
|  |     textures = {"automobiles_black.png","automobiles_coupe_glasses.png"}, | ||||||
|  | 	}, | ||||||
|  | 
 | ||||||
|  |     on_activate = function(self,std) | ||||||
|  | 	    self.sdata = minetest.deserialize(std) or {} | ||||||
|  | 	    if self.sdata.remove then self.object:remove() end | ||||||
|  |     end, | ||||||
|  | 	     | ||||||
|  |     get_staticdata=function(self) | ||||||
|  |       self.sdata.remove=true | ||||||
|  |       return minetest.serialize(self.sdata) | ||||||
|  |     end, | ||||||
|  | 
 | ||||||
|  |     --[[on_step = function(self, dtime, moveresult) | ||||||
|  |         minetest.chat_send_all(dump(moveresult)) | ||||||
|  |     end,]]-- | ||||||
|  | 	 | ||||||
|  | }) | ||||||
|  | 
 | ||||||
| minetest.register_entity('automobiles_coupe:front_suspension',{ | minetest.register_entity('automobiles_coupe:front_suspension',{ | ||||||
| initial_properties = { | initial_properties = { | ||||||
| 	physical = true, | 	physical = true, | ||||||
| @ -59,7 +118,7 @@ initial_properties = { | |||||||
|     glow = 0, |     glow = 0, | ||||||
| 	visual = "mesh", | 	visual = "mesh", | ||||||
| 	mesh = "automobiles_coupe_f_lights.b3d", | 	mesh = "automobiles_coupe_f_lights.b3d", | ||||||
|     textures = {"automobiles_grey.png",}, |     textures = {"automobiles_grey.png", "automobiles_black.png"}, | ||||||
| 	}, | 	}, | ||||||
| 
 | 
 | ||||||
|     on_activate = function(self,std) |     on_activate = function(self,std) | ||||||
| @ -82,7 +141,7 @@ initial_properties = { | |||||||
|     glow = 0, |     glow = 0, | ||||||
| 	visual = "mesh", | 	visual = "mesh", | ||||||
| 	mesh = "automobiles_coupe_rear_pos_lights.b3d", | 	mesh = "automobiles_coupe_rear_pos_lights.b3d", | ||||||
|     textures = {"automobiles_rear_lights_off.png",}, |     textures = {"automobiles_rear_lights_off.png"}, | ||||||
| 	}, | 	}, | ||||||
| 
 | 
 | ||||||
|     on_activate = function(self,std) |     on_activate = function(self,std) | ||||||
| @ -188,28 +247,6 @@ initial_properties = { | |||||||
| 	 | 	 | ||||||
| }) | }) | ||||||
| 
 | 
 | ||||||
| minetest.register_entity('automobiles_coupe:steering',{ |  | ||||||
| initial_properties = { |  | ||||||
| 	physical = false, |  | ||||||
| 	collide_with_objects=false, |  | ||||||
| 	pointable=false, |  | ||||||
| 	visual = "mesh", |  | ||||||
| 	mesh = "automobiles_coupe_drive_wheel.b3d", |  | ||||||
|     textures = {"automobiles_black.png", "automobiles_black.png", "automobiles_black.png"}, |  | ||||||
| 	}, |  | ||||||
| 	 |  | ||||||
|     on_activate = function(self,std) |  | ||||||
| 	    self.sdata = minetest.deserialize(std) or {} |  | ||||||
| 	    if self.sdata.remove then self.object:remove() end |  | ||||||
|     end, |  | ||||||
| 	     |  | ||||||
|     get_staticdata=function(self) |  | ||||||
|       self.sdata.remove=true |  | ||||||
|       return minetest.serialize(self.sdata) |  | ||||||
|     end, |  | ||||||
| 	 |  | ||||||
| }) |  | ||||||
| 
 |  | ||||||
| minetest.register_entity('automobiles_coupe:pointer',{ | minetest.register_entity('automobiles_coupe:pointer',{ | ||||||
| initial_properties = { | initial_properties = { | ||||||
| 	physical = false, | 	physical = false, | ||||||
| @ -244,16 +281,26 @@ minetest.register_entity("automobiles_coupe:coupe", { | |||||||
|         --use_texture_alpha = true, |         --use_texture_alpha = true, | ||||||
|         --backface_culling = false, |         --backface_culling = false, | ||||||
|         textures = { |         textures = { | ||||||
|             "automobiles_black.png", --bancos |             "automobiles_dark_grey.png", --bancos | ||||||
|             "automobiles_painting.png", --carroceria |             "automobiles_painting.png", --pintura portas | ||||||
|  |             "automobiles_black.png", --retrovisores | ||||||
|  |             "automobiles_dark_grey.png", --forro da porta | ||||||
|  |             "automobiles_coupe_glasses.png", --vidros das portas | ||||||
|  |             "automobiles_metal.png", --espelhos | ||||||
|  |             "automobiles_black.png", --volante | ||||||
|  |             "automobiles_painting2.png", --face | ||||||
|  |             "automobiles_black.png", --moldura parabrisa | ||||||
|  |             "automobiles_coupe_glasses.png", --parabrisa | ||||||
|  |             "automobiles_black.png", --grade_motor | ||||||
|  |             "automobiles_dark_grey.png", --revestimento interno | ||||||
|  |             "automobiles_coupe_fuel.png", --combustivel | ||||||
|  |             "automobiles_painting.png", --pintura | ||||||
|  |             "automobiles_black.png", --frisos | ||||||
|             "automobiles_black.png", --paralamas |             "automobiles_black.png", --paralamas | ||||||
|             "automobiles_black.png", --saia |             "automobiles_black.png", --assoalho | ||||||
|             "automobiles_black.png", --banco |             "automobiles_painting2.png", --traseira | ||||||
|             "automobiles_coupe_glasses.png", --vidros |             "automobiles_black.png", --traseira placa | ||||||
|             "automobiles_black.png", --aletas vidro traseiro |             "automobiles_black.png", --ventilação vidro traseiro | ||||||
|             "automobiles_grey.png", --interior |  | ||||||
|             "automobiles_black.png", --panel |  | ||||||
|             "automobiles_coupe_fuel.png", |  | ||||||
|             }, |             }, | ||||||
|     }, |     }, | ||||||
|     textures = {}, |     textures = {}, | ||||||
| @ -341,16 +388,16 @@ minetest.register_entity("automobiles_coupe:coupe", { | |||||||
|         local pos = self.object:get_pos() |         local pos = self.object:get_pos() | ||||||
| 
 | 
 | ||||||
|         local front_suspension=minetest.add_entity(self.object:get_pos(),'automobiles_coupe:front_suspension') |         local front_suspension=minetest.add_entity(self.object:get_pos(),'automobiles_coupe:front_suspension') | ||||||
| 	    front_suspension:set_attach(self.object,'',{x=0,y=1.5,z=24.5},{x=0,y=0,z=0}) | 	    front_suspension:set_attach(self.object,'',{x=0,y=1.5,z=27.7057},{x=0,y=0,z=0}) | ||||||
| 	    self.front_suspension = front_suspension | 	    self.front_suspension = front_suspension | ||||||
| 
 | 
 | ||||||
| 	    local lf_wheel=minetest.add_entity(pos,'automobiles_lib:wheel') | 	    local lf_wheel=minetest.add_entity(pos,'automobiles_coupe:wheel') | ||||||
| 	    lf_wheel:set_attach(self.front_suspension,'',{x=-coupe.front_wheel_xpos,y=0,z=0},{x=0,y=0,z=0}) | 	    lf_wheel:set_attach(self.front_suspension,'',{x=-coupe.front_wheel_xpos,y=0,z=0},{x=0,y=0,z=0}) | ||||||
| 		-- set the animation once and later only change the speed | 		-- set the animation once and later only change the speed | ||||||
|         lf_wheel:set_animation({x = 1, y = 49}, 0, 0, true) |         lf_wheel:set_animation({x = 1, y = 49}, 0, 0, true) | ||||||
| 	    self.lf_wheel = lf_wheel | 	    self.lf_wheel = lf_wheel | ||||||
| 
 | 
 | ||||||
| 	    local rf_wheel=minetest.add_entity(pos,'automobiles_lib:wheel') | 	    local rf_wheel=minetest.add_entity(pos,'automobiles_coupe:wheel') | ||||||
| 	    rf_wheel:set_attach(self.front_suspension,'',{x=coupe.front_wheel_xpos,y=0,z=0},{x=0,y=180,z=0}) | 	    rf_wheel:set_attach(self.front_suspension,'',{x=coupe.front_wheel_xpos,y=0,z=0},{x=0,y=180,z=0}) | ||||||
| 		-- set the animation once and later only change the speed | 		-- set the animation once and later only change the speed | ||||||
|         rf_wheel:set_animation({x = 1, y = 49}, 0, 0, true) |         rf_wheel:set_animation({x = 1, y = 49}, 0, 0, true) | ||||||
| @ -360,25 +407,19 @@ minetest.register_entity("automobiles_coupe:coupe", { | |||||||
| 	    rear_suspension:set_attach(self.object,'',{x=0,y=1.5,z=0},{x=0,y=0,z=0}) | 	    rear_suspension:set_attach(self.object,'',{x=0,y=1.5,z=0},{x=0,y=0,z=0}) | ||||||
| 	    self.rear_suspension = rear_suspension | 	    self.rear_suspension = rear_suspension | ||||||
| 
 | 
 | ||||||
| 	    local lr_wheel=minetest.add_entity(pos,'automobiles_lib:wheel') | 	    local lr_wheel=minetest.add_entity(pos,'automobiles_coupe:wheel') | ||||||
| 	    lr_wheel:set_attach(self.rear_suspension,'',{x=-coupe.rear_wheel_xpos,y=0,z=0},{x=0,y=0,z=0}) | 	    lr_wheel:set_attach(self.rear_suspension,'',{x=-coupe.rear_wheel_xpos,y=0,z=0},{x=0,y=0,z=0}) | ||||||
| 		-- set the animation once and later only change the speed | 		-- set the animation once and later only change the speed | ||||||
|         lr_wheel:set_animation({x = 1, y = 49}, 0, 0, true) |         lr_wheel:set_animation({x = 1, y = 49}, 0, 0, true) | ||||||
| 	    self.lr_wheel = lr_wheel | 	    self.lr_wheel = lr_wheel | ||||||
| 
 | 
 | ||||||
| 	    local rr_wheel=minetest.add_entity(pos,'automobiles_lib:wheel') | 	    local rr_wheel=minetest.add_entity(pos,'automobiles_coupe:wheel') | ||||||
| 	    rr_wheel:set_attach(self.rear_suspension,'',{x=coupe.rear_wheel_xpos,y=0,z=0},{x=0,y=180,z=0}) | 	    rr_wheel:set_attach(self.rear_suspension,'',{x=coupe.rear_wheel_xpos,y=0,z=0},{x=0,y=180,z=0}) | ||||||
| 		-- set the animation once and later only change the speed | 		-- set the animation once and later only change the speed | ||||||
|         rr_wheel:set_animation({x = 1, y = 49}, 0, 0, true) |         rr_wheel:set_animation({x = 1, y = 49}, 0, 0, true) | ||||||
| 	    self.rr_wheel = rr_wheel | 	    self.rr_wheel = rr_wheel | ||||||
| 
 | 
 | ||||||
| 	    local steering_axis=minetest.add_entity(pos,'automobiles_coupe:pivot_mesh') |         self.object:set_bone_position("drive_adjust", {x=-4.26, y=6.31, z=15.69}, {x=15, y=0, z=0})  | ||||||
|         steering_axis:set_attach(self.object,'',{x=-4.26,y=6.01,z=14.18},{x=15,y=0,z=0}) |  | ||||||
| 	    self.steering_axis = steering_axis |  | ||||||
| 
 |  | ||||||
| 	    local steering=minetest.add_entity(self.steering_axis:get_pos(),'automobiles_coupe:steering') |  | ||||||
|         steering:set_attach(self.steering_axis,'',{x=0,y=0,z=0},{x=0,y=0,z=0}) |  | ||||||
| 	    self.steering = steering |  | ||||||
| 
 | 
 | ||||||
| 	    local driver_seat=minetest.add_entity(pos,'automobiles_coupe:pivot_mesh') | 	    local driver_seat=minetest.add_entity(pos,'automobiles_coupe:pivot_mesh') | ||||||
|         driver_seat:set_attach(self.object,'',{x=-4.25,y=0.48,z=9.5},{x=0,y=0,z=0}) |         driver_seat:set_attach(self.object,'',{x=-4.25,y=0.48,z=9.5},{x=0,y=0,z=0}) | ||||||
| @ -397,6 +438,11 @@ minetest.register_entity("automobiles_coupe:coupe", { | |||||||
| 	    self.lights = lights | 	    self.lights = lights | ||||||
|         self.lights:set_properties({is_visible=true}) |         self.lights:set_properties({is_visible=true}) | ||||||
| 
 | 
 | ||||||
|  |         local normal_kit = minetest.add_entity(pos,'automobiles_coupe:normal_kit') | ||||||
|  | 	    normal_kit:set_attach(self.object,'',{x=0,y=0,z=0},{x=0,y=0,z=0}) | ||||||
|  | 	    self.normal_kit = normal_kit | ||||||
|  |         self.normal_kit:set_properties({is_visible=true}) | ||||||
|  | 
 | ||||||
|         local r_lights = minetest.add_entity(pos,'automobiles_coupe:r_lights') |         local r_lights = minetest.add_entity(pos,'automobiles_coupe:r_lights') | ||||||
| 	    r_lights:set_attach(self.object,'',{x=0,y=0,z=0},{x=0,y=0,z=0}) | 	    r_lights:set_attach(self.object,'',{x=0,y=0,z=0},{x=0,y=0,z=0}) | ||||||
| 	    self.r_lights = r_lights | 	    self.r_lights = r_lights | ||||||
| @ -503,14 +549,14 @@ minetest.register_entity("automobiles_coupe:coupe", { | |||||||
|             self._last_light_move = 0 |             self._last_light_move = 0 | ||||||
|             if self._show_lights == true then |             if self._show_lights == true then | ||||||
|                 --self.lights:set_properties({is_visible=true}) |                 --self.lights:set_properties({is_visible=true}) | ||||||
|                 self.lights:set_properties({textures={"automobiles_coupe_lights.png"}, glow=15}) |                 self.lights:set_properties({textures={"automobiles_coupe_lights.png", "automobiles_black.png"}, glow=15}) | ||||||
|                 if is_breaking == false then |                 if is_breaking == false then | ||||||
|                     self.r_lights:set_properties({textures={"automobiles_rear_lights.png"}, glow=10}) |                     self.r_lights:set_properties({textures={"automobiles_rear_lights.png"}, glow=10}) | ||||||
|                 end |                 end | ||||||
|                 automobiles_lib.put_light(self) |                 automobiles_lib.put_light(self) | ||||||
|             else |             else | ||||||
|                 --self.lights:set_properties({is_visible=false}) |                 --self.lights:set_properties({is_visible=false}) | ||||||
|                 self.lights:set_properties({textures={"automobiles_grey.png"}, glow=0}) |                 self.lights:set_properties({textures={"automobiles_grey.png", "automobiles_black.png"}, glow=0}) | ||||||
|                 if is_breaking == false then |                 if is_breaking == false then | ||||||
|                     self.r_lights:set_properties({textures={"automobiles_rear_lights_off.png"}, glow=0}) |                     self.r_lights:set_properties({textures={"automobiles_rear_lights_off.png"}, glow=0}) | ||||||
|                 end |                 end | ||||||
| @ -578,7 +624,7 @@ minetest.register_entity("automobiles_coupe:coupe", { | |||||||
|         self.rr_wheel:set_animation_frame_speed(-longit_speed * (12 + angle_factor)) |         self.rr_wheel:set_animation_frame_speed(-longit_speed * (12 + angle_factor)) | ||||||
| 
 | 
 | ||||||
|         --whell turn |         --whell turn | ||||||
|         self.steering:set_attach(self.steering_axis,'',{x=0,y=0,z=0},{x=0,y=0,z=self._steering_angle*2}) |         self.object:set_bone_position("drive_wheel", {x=-0, y=0, z=0}, {x=0, y=0, z=-self._steering_angle*2})  | ||||||
|         self.lf_wheel:set_attach(self.front_suspension,'',{x=-coupe.front_wheel_xpos,y=0,z=0},{x=0,y=-self._steering_angle-angle_factor,z=0}) |         self.lf_wheel:set_attach(self.front_suspension,'',{x=-coupe.front_wheel_xpos,y=0,z=0},{x=0,y=-self._steering_angle-angle_factor,z=0}) | ||||||
|         self.rf_wheel:set_attach(self.front_suspension,'',{x=coupe.front_wheel_xpos,y=0,z=0},{x=0,y=(-self._steering_angle+angle_factor)+180,z=0}) |         self.rf_wheel:set_attach(self.front_suspension,'',{x=coupe.front_wheel_xpos,y=0,z=0},{x=0,y=(-self._steering_angle+angle_factor)+180,z=0}) | ||||||
| 
 | 
 | ||||||
| @ -593,10 +639,13 @@ minetest.register_entity("automobiles_coupe:coupe", { | |||||||
|         if math.abs(self._steering_angle) > 15 and self._turn_light_timer >= 1 then |         if math.abs(self._steering_angle) > 15 and self._turn_light_timer >= 1 then | ||||||
|             self._turn_light_timer = 0 |             self._turn_light_timer = 0 | ||||||
|             --set turn light |             --set turn light | ||||||
|  |             --minetest.chat_send_all(self._steering_angle) | ||||||
|             if self._steering_angle < 0 then |             if self._steering_angle < 0 then | ||||||
|  |                 --minetest.chat_send_all("direita") | ||||||
|                 self.turn_r_light:set_properties({textures={"automobiles_turn_on.png"}, glow=20}) |                 self.turn_r_light:set_properties({textures={"automobiles_turn_on.png"}, glow=20}) | ||||||
|             end |             end | ||||||
|             if self._steering_angle > 0 then |             if self._steering_angle > 0 then | ||||||
|  |                 --minetest.chat_send_all("esquerda") | ||||||
|                 self.turn_l_light:set_properties({textures={"automobiles_turn_on.png"}, glow=20}) |                 self.turn_l_light:set_properties({textures={"automobiles_turn_on.png"}, glow=20}) | ||||||
|             end |             end | ||||||
|         end |         end | ||||||
|  | |||||||
| @ -31,14 +31,13 @@ function coupe.destroy(self, puncher) | |||||||
|     if self.rear_suspension then self.rear_suspension:remove() end |     if self.rear_suspension then self.rear_suspension:remove() end | ||||||
|     if self.lr_wheel then self.lr_wheel:remove() end |     if self.lr_wheel then self.lr_wheel:remove() end | ||||||
|     if self.rr_wheel then self.rr_wheel:remove() end |     if self.rr_wheel then self.rr_wheel:remove() end | ||||||
|     if self.steering then self.steering:remove() end |  | ||||||
|     if self.steering_axis then self.steering_axis:remove() end |  | ||||||
|     if self.driver_seat then self.driver_seat:remove() end |     if self.driver_seat then self.driver_seat:remove() end | ||||||
|     if self.passenger_seat then self.passenger_seat:remove() end |     if self.passenger_seat then self.passenger_seat:remove() end | ||||||
|     if self.fuel_gauge then self.fuel_gauge:remove() end |     if self.fuel_gauge then self.fuel_gauge:remove() end | ||||||
|     if self.lights then self.lights:remove() end |     if self.lights then self.lights:remove() end | ||||||
|     if self.r_lights then self.r_lights:remove() end |     if self.r_lights then self.r_lights:remove() end | ||||||
|     if self.reverse_lights then self.reverse_lights:remove() end |     if self.reverse_lights then self.reverse_lights:remove() end | ||||||
|  |     if self.normal_kit then self.normal_kit:remove() end | ||||||
|     if self.turn_l_light then self.turn_l_light:remove() end |     if self.turn_l_light then self.turn_l_light:remove() end | ||||||
|     if self.turn_r_light then self.turn_r_light:remove() end |     if self.turn_r_light then self.turn_r_light:remove() end | ||||||
| 
 | 
 | ||||||
|  | |||||||
| @ -3,14 +3,14 @@ | |||||||
| -- | -- | ||||||
| coupe={} | coupe={} | ||||||
| coupe.LONGIT_DRAG_FACTOR = 0.12*0.12 | coupe.LONGIT_DRAG_FACTOR = 0.12*0.12 | ||||||
| coupe.LATER_DRAG_FACTOR = 18.0 | coupe.LATER_DRAG_FACTOR = 8.0 | ||||||
| coupe.gravity = automobiles_lib.gravity | coupe.gravity = automobiles_lib.gravity | ||||||
| coupe.max_speed = 22 | coupe.max_speed = 30 | ||||||
| coupe.max_acc_factor = 8 | coupe.max_acc_factor = 8 | ||||||
| coupe.max_fuel = 10 | coupe.max_fuel = 10 | ||||||
| coupe.trunk_slots = 8 | coupe.trunk_slots = 8 | ||||||
| 
 | 
 | ||||||
| COUPE_GAUGE_FUEL_POSITION =  {x=0,y=6.2,z=15.8} | COUPE_GAUGE_FUEL_POSITION =  {x=-4.26,y=6.2,z=17.9} | ||||||
| 
 | 
 | ||||||
| coupe.front_wheel_xpos = 9.5 | coupe.front_wheel_xpos = 9.5 | ||||||
| coupe.rear_wheel_xpos = 9.5 | coupe.rear_wheel_xpos = 9.5 | ||||||
|  | |||||||
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								automobiles_coupe/models/automobiles_coupe_normal_kit.b3d
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								automobiles_coupe/models/automobiles_coupe_normal_kit.b3d
									
									
									
									
									
										Executable file
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								automobiles_coupe/models/automobiles_coupe_wheel.b3d
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								automobiles_coupe/models/automobiles_coupe_wheel.b3d
									
									
									
									
									
										Executable file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								automobiles_coupe/textures/automobiles_coupe_glasses.png
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								automobiles_coupe/textures/automobiles_coupe_glasses.png
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
										
											Binary file not shown.
										
									
								
							| Before Width: | Height: | Size: 8.2 KiB After Width: | Height: | Size: 8.5 KiB | 
							
								
								
									
										
											BIN
										
									
								
								automobiles_coupe/textures/automobiles_coupe_wheel.png
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								automobiles_coupe/textures/automobiles_coupe_wheel.png
									
									
									
									
									
										Executable file
									
								
							
										
											Binary file not shown.
										
									
								
							| After Width: | Height: | Size: 22 KiB | 
| @ -400,6 +400,10 @@ function automobiles_lib.paint(self, colstr) | |||||||
|             if indx then |             if indx then | ||||||
|                 l_textures[_] = "automobiles_painting.png^[multiply:".. colstr |                 l_textures[_] = "automobiles_painting.png^[multiply:".. colstr | ||||||
|             end |             end | ||||||
|  |             indx = texture:find('automobiles_painting2.png') | ||||||
|  |             if indx then | ||||||
|  |                 l_textures[_] = "automobiles_painting2.png^[multiply:".. colstr | ||||||
|  |             end | ||||||
|         end |         end | ||||||
| 	    self.object:set_properties({textures=l_textures}) | 	    self.object:set_properties({textures=l_textures}) | ||||||
|     end |     end | ||||||
|  | |||||||
							
								
								
									
										
											BIN
										
									
								
								automobiles_lib/textures/automobiles_dark_grey.png
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								automobiles_lib/textures/automobiles_dark_grey.png
									
									
									
									
									
										Executable file
									
								
							
										
											Binary file not shown.
										
									
								
							| After Width: | Height: | Size: 6.1 KiB | 
							
								
								
									
										
											BIN
										
									
								
								automobiles_lib/textures/automobiles_painting2.png
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								automobiles_lib/textures/automobiles_painting2.png
									
									
									
									
									
										Executable file
									
								
							
										
											Binary file not shown.
										
									
								
							| After Width: | Height: | Size: 5.4 KiB | 
		Loading…
	
		Reference in New Issue
	
	Block a user