【发布时间】:2018-06-08 13:51:12
【问题描述】:
https://gyazo.com/d0d0bab65c0a7060972988a5e73c7959
这是通过这个实现的:
local x = script.Parent.Smile
local y = script.Parent.Smile2
while true do
x:TweenPosition(UDim2.new(0, 0, 1, 0))
y:TweenPosition(UDim2.new(0, 0, 1, 0))
wait(.1)
x.Position = y.Position + UDim2.new(0, 0, -1, 0)
y.Position = UDim2.new(0, 0, 0, 0)
end
我想知道是否有更好的方法让它更平滑(更慢)?
【问题讨论】: