作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试扩展 Vector2DFieldInterpolator
为了在给定三个点(起点、终点和中间点)的情况下制作平滑的弧形动画。
我已经通过设置 key
让它工作了和 keyValue
常规字段 Vector2DFieldInterpolator
,但现在我想把它全部放在一个组件中,这样它就可以很容易地重复使用。
这是我现在拥有的最小可行示例:
示例.xml:
<?xml version="1.0" encoding="utf-8" ?>
<component name="ArcInterpolatorExample" extends="Scene" >
<script type="text/brightscript" uri="pkg:/components/Example.brs"/>
<children>
<Rectangle id = "animateMe" height = "20" width = "20" color="#ffff00ff"
translation="[250,250]"/>
<Label id="labelA" text="A" translation="[250,250]"/>
<Label id="labelB" text="B" translation="[125,250]"/>
<Label id="labelC" text="C" translation="[75,180]"/>
<Animation
id="animate"
easeFunction="linear"
duration="10">
<ArcInterpolator
id="arcInterpol"
start="[250,250]"
middle="[125,250]"
end="[75,180]"
fieldToInterp="animateMe.translation"
/>
</Animation>
</children>
</component>
sub init()
m.arcAnimator = m.top.findNode("animate")
m.arcAnimator.control = "start"
end sub
<?xml version="1.0" encoding="utf-8" ?>
<component name="ArcInterpolator" extends="Vector2DFieldInterpolator">
<interface>
<field id="start" type="vector2d" onChange="onCoordinateSet"/>
<field id="middle" type="vector2d" onChange="onCoordinateSet"/>
<field id="end" type="vector2d" onChange="onCoordinateSet"/>
</interface>
<script type="text/brightscript" uri="pkg:/components/ArcInterpolator.brs"/>
</component>
sub init()
m.pi = 3.1415927
end sub
sub onCoordinateSet()
' check that no two points are the same
if (m.top.start[0] = m.top.middle[0] and m.top.start[1] = m.top.middle[1]) or (m.top.start[0] = m.top.end[0] and m.top.start[1] = m.top.end[1]) or (m.top.middle[0] = m.top.end[0] and m.top.middle[1] = m.top.end[1]) then
return
else
setValues()
end if
end sub
sub setValues()
startpoint = m.top.start
midpoint = m.top.middle
endpoint = m.top.end
numOfPoints = 11
dim keys[numOfPoints-1]
dim values[numOfPoints-1]
keys[0] = 0.0
keys[numOfPoints-1] = 1.0
values[0] = startpoint
values[numOfPoints-1] = endpoint
' a bunch of calculation is done here and keys and values are set
m.top.key = keys
m.top.keyValue = values
end sub
最佳答案
事实证明,是的,可以扩展插值器,但是我以错误的方式进行了处理。插值器上有一个字段,名为 fraction
它在动画过程中更新。还有一个字段叫fieldToInterp
它描述了要更改的节点和字段。
为了编写自己的插值器,您需要找到fieldToInterp
描述的节点和字段。并将其存储在 m
然后观察 fraction
并根据分数更新该节点的字段。这就是最终的样子:
ArcInterpolator.brs:
sub init()
m.pi = 3.1415927
m.top.observeField("fraction", "calculateValue")
m.top.observeField("fieldToInterp", "findNodeToMove")
end sub
sub findNodeToMove(event as object)
nodeAndField = event.getData()
if right(nodeAndField, 12) <> ".translation" then return
length = len(nodeAndField)
nodeName = left(nodeAndField, length - 12)
currentNode = m.top
while currentNode.getParent() <> invalid
currentNode = currentNode.getParent()
node = currentNode.findNode(nodeName)
if node <> invalid
m.nodeToMove = node
exit while
end if
end while
end sub
sub onCoordinateSet()
' check that no two points are the same
if (m.top.start[0] = m.top.middle[0] and m.top.start[1] = m.top.middle[1]) or (m.top.start[0] = m.top.end[0] and m.top.start[1] = m.top.end[1]) or (m.top.middle[0] = m.top.end[0] and m.top.middle[1] = m.top.end[1]) then
return
else
setValues()
end if
end sub
sub setValues()
' do some math to set the center of the circle, total angle, start angle etc.
end sub
sub calculateValue(event as object)
fraction = event.getData()
angle = fraction * m.totalAngle + m.startAngle
dim position[1]
position[0] = m.center[0] + m.radius * cos(angle)
position[1] = m.center[1] + m.radius * sin(angle)
m.nodeToMove.translation = position
end sub
关于roku - 是否可以扩展插值器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58823479/
我是一名优秀的程序员,十分优秀!