Module:AnimateSprite: Difference between revisions
Module_>MarkusRost No edit summary |
m (1 revision imported) |
||
(No difference)
|
Latest revision as of 22:03, 16 February 2025
This module was ported from https://minecraft.wiki. It is licensed under CC BY-NC-SA 3.0
Usage[edit source]
Implement Template:T.
local p = {} function p.animate( f ) local args = f if f == mw.getCurrentFrame() then args = f:getParent().args end local icons = {} local sprite = require( 'Module:SpriteFile' ).sprite local name = args.name or 'InvSprite' local function image( icon ) return sprite({ name = name, icon, size = args.size or 32, align = args.align or 'middle', keepcase = true }) or '' end for icon in mw.text.gsplit( args[1], '%s*;%s*' ) do icons[#icons+1] = '<span>' .. (#icon > 0 and image( icon ) or '<br>') .. '</span>' end icons[1] = icons[1]:gsub( '^<span>', '<span class="animated-active">' ) return '<span class="animated">' .. table.concat( icons ) .. '</span>' end return p