mirror of
https://github.com/minetest/minetest.git
synced 2025-06-30 07:00:23 +02:00
content_cao: Support texture animation for upright_sprite (#10020)
This commit is contained in:
@ -68,7 +68,7 @@ minetest.register_entity("testentities:mesh_unshaded", {
|
||||
|
||||
-- Advanced visual tests
|
||||
|
||||
-- A test entity for testing animated and yaw-modulated sprites
|
||||
-- An entity for testing animated and yaw-modulated sprites
|
||||
minetest.register_entity("testentities:yawsprite", {
|
||||
initial_properties = {
|
||||
selectionbox = {-0.3, -0.5, -0.3, 0.3, 0.3, 0.3},
|
||||
@ -79,6 +79,18 @@ minetest.register_entity("testentities:yawsprite", {
|
||||
initial_sprite_basepos = {x=0, y=0},
|
||||
},
|
||||
on_activate = function(self, staticdata)
|
||||
self.object:set_sprite({x=0, y=0}, 1, 0, true)
|
||||
self.object:set_sprite({x=0, y=0}, 3, 0.5, true)
|
||||
end,
|
||||
})
|
||||
|
||||
-- An entity for testing animated upright sprites
|
||||
minetest.register_entity("testentities:upright_animated", {
|
||||
initial_properties = {
|
||||
visual = "upright_sprite",
|
||||
textures = {"testnodes_anim.png"},
|
||||
spritediv = {x = 1, y = 4},
|
||||
},
|
||||
on_activate = function(self)
|
||||
self.object:set_sprite({x=0, y=0}, 4, 1.0, false)
|
||||
end,
|
||||
})
|
||||
|
Reference in New Issue
Block a user