public bool SetPos(string name, float x, float y, float z) { if (_scene == null) { return(false); } warp_Object o = _scene.sceneobject(name); if (o == null) { return(false); } o.setPos(x, y, z); return(true); }