我在使用 away3D 库时遇到了一些问题。我想使用 AS3DMod 对立方体应用弯曲,但我似乎无法让它工作。当我想弯曲它们时,我的立方体会被肢解:p 它们向各个方向弯曲,我似乎无法在弯曲中找到图案。有人对此有任何经验(或建议)吗?提前致谢。
private function bend(e:MouseEvent3D):void
{
//We get the current target.
var _target:Cube = e.target as Cube;
//We create a new modifier.
var _bend:Bend = new Bend(2);
_bend.constraint = ModConstant.LEFT;
_bend.bendAxis = ModConstant.LEFT;
var _mod:ModifierStack = new ModifierStack(new LibraryAway3d(), _target);
_mod.addModifier(_bend);
//We play the modification.
_mod.apply();
//We render the scene.
render();
}