【Defold】手続き型でアニメーションできる「Def Timeline」アセット

Defold, DEVELOP

目次

アセットページ

Def Timeline (defold.com)

ライブラリのURL

https://github.com/AllanDouglas/deftimeline/archive/master.zip

使い方

local timeline = require("timeline.def_timeline")
 
local t = timeline.new()
t.add(".", "position.x", nil, 150, nil, 2)
t.add(".", "position.y", nil, 150, nil, 2)
t.add(".", "position.y", nil, 0, nil, 2)
t.on_completed(
	function()
		print('the end')
	end
)
 
t.play()

お知らせ

Posted by kazupon