跳转至

VoxModelSetMotion 设定体素模型运动

格式

VoxModelSetMotion(vmId, motion, speed, angularSpeed)

简介

设置体素模型运动。运动类型详见MOTION

参数

名称 类型 描述
mobId int 体素模型ID
motion key 运动类型
speed float 移动速度
angularSpeed float 转动速度

实例

运行开始时设置体素模型以移速1转速0.5做无重力向前移动运动。

import fg
import wx

asset = fg.AssetCreate()
asset.name = 'Main Scene'
asset.state = fg.STATE.VOXMODEL
asset.vmFile = 'mainScene'
asset.icon='icon.png'

fg.AssetRegister(asset)

def onStart(self):
    wx.VoxModelSetMotion(self.id, wx.MOTION.NO_GRAVITY|wx.MOTION.FORWARD, 1, 0.5)

fg.AssetSetStartCBFunc(asset, onStart)