@@ -223,19 +223,73 @@ minetest.register_node("testnodes:plantlike_waving", {
223
223
224
224
225
225
-- param2 will rotate
226
+ local function rotate_on_rightclick (pos , node , clicker )
227
+ local def = minetest .registered_nodes [node .name ]
228
+ local aux1 = clicker :get_player_control ().aux1
229
+
230
+ local deg , deg_max
231
+ local color , color_mult = 0 , 0
232
+ if def .paramtype2 == " degrotate" then
233
+ deg = node .param2
234
+ deg_max = 240
235
+ elseif def .paramtype2 == " colordegrotate" then
236
+ -- MSB [3x color, 5x rotation] LSB
237
+ deg = node .param2 % 2 ^ 5
238
+ deg_max = 24
239
+ color_mult = 2 ^ 5
240
+ color = math.floor (node .param2 / color_mult )
241
+ end
242
+
243
+ deg = (deg + (aux1 and 10 or 1 )) % deg_max
244
+ node .param2 = color * color_mult + deg
245
+ minetest .swap_node (pos , node )
246
+ minetest .chat_send_player (clicker :get_player_name (),
247
+ " Rotation is now " .. deg .. " / " .. deg_max )
248
+ end
249
+
226
250
minetest .register_node (" testnodes:plantlike_degrotate" , {
227
251
description = S (" Degrotate Plantlike Drawtype Test Node" ),
228
252
drawtype = " plantlike" ,
229
253
paramtype = " light" ,
230
254
paramtype2 = " degrotate" ,
231
255
tiles = { " testnodes_plantlike_degrotate.png" },
232
256
233
-
257
+ on_rightclick = rotate_on_rightclick ,
258
+ place_param2 = 7 ,
234
259
walkable = false ,
235
260
sunlight_propagates = true ,
236
261
groups = { dig_immediate = 3 },
237
262
})
238
263
264
+ minetest .register_node (" testnodes:mesh_degrotate" , {
265
+ description = S (" Degrotate Mesh Drawtype Test Node" ),
266
+ drawtype = " mesh" ,
267
+ paramtype = " light" ,
268
+ paramtype2 = " degrotate" ,
269
+ mesh = " testnodes_pyramid.obj" ,
270
+ tiles = { " testnodes_mesh_stripes2.png" },
271
+
272
+ on_rightclick = rotate_on_rightclick ,
273
+ place_param2 = 7 ,
274
+ sunlight_propagates = true ,
275
+ groups = { dig_immediate = 3 },
276
+ })
277
+
278
+ minetest .register_node (" testnodes:mesh_colordegrotate" , {
279
+ description = S (" Color Degrotate Mesh Drawtype Test Node" ),
280
+ drawtype = " mesh" ,
281
+ paramtype2 = " colordegrotate" ,
282
+ palette = " testnodes_palette_facedir.png" ,
283
+ mesh = " testnodes_pyramid.obj" ,
284
+ tiles = { " testnodes_mesh_stripes2.png" },
285
+
286
+ on_rightclick = rotate_on_rightclick ,
287
+ -- color index 1, 7 steps rotated
288
+ place_param2 = 1 * 2 ^ 5 + 7 ,
289
+ sunlight_propagates = true ,
290
+ groups = { dig_immediate = 3 },
291
+ })
292
+
239
293
-- param2 will change height
240
294
minetest .register_node (" testnodes:plantlike_leveled" , {
241
295
description = S (" Leveled Plantlike Drawtype Test Node" ),
0 commit comments