pathOffsetSet接口脚本使用示例

功能

建立线程中,并在线程中循环改变传入pathOffsetSet的传入值,事例中循环改变Z轴偏移量,以实现路点0到路点1的曲线运动。

脚本

--pathOffsetSet示例
offset_z1 = { 0, 0, 0.1, 0, 0, 0 };
offset_z2 = { 0, 0, -0.1, 0, 0, 0 };
local cur_index = 0;
handler_thread_pathOffsetSet_0=thread(function()
        while true do
            if cur_index % 2 == 0 then
                pathOffsetSet(offset_z1,0)
             else 
                pathOffsetSet(offset_z2,0)
             end
            cur_index=cur_index+1
        end
    end, "thread_pathOffsetSet_0")
run(handler_thread_pathOffsetSet_0)

示例图

results matching ""

    No results matching ""