(scm_t_subr)irr_scene_addSphereSceneNode);
scm_c_define_gsubr ("create-fly-circle-animator", 1, 0, 1,
(scm_t_subr)irr_scene_createFlyCircleAnimator);
+ scm_c_define_gsubr ("create-fly-straight-animator", 4, 0, 1,
+ (scm_t_subr)irr_scene_createFlyStraightAnimator);
scm_c_define_gsubr ("create-rotation-animator", 2, 0, 0,
(scm_t_subr)irr_scene_createRotationAnimator);
scm_c_define_gsubr ("get-mesh", 2, 0, 0, (scm_t_subr)irr_scene_getMesh);
scm_c_export ("add-animated-mesh-scene-node!", "add-camera-scene-node!",
"add-camera-scene-node-fps!", "add-custom-scene-node!", "add-cube-scene-node!",
"add-octree-scene-node!", "add-sphere-scene-node!", "create-fly-circle-animator",
- "create-rotation-animator", "get-mesh", "get-root-scene-node",
- "get-scene-manager", NULL);
+ "create-fly-straight-animator", "create-rotation-animator", "get-mesh",
+ "get-root-scene-node", "get-scene-manager", NULL);
}
DEFINE_WRAPPED_TYPE (irr::scene::ISceneManager*, "scene-manager",
return wrap_scene_node_animator (anim);
}
+ SCM
+ irr_scene_createFlyStraightAnimator (SCM wrapped_scene_manager,
+ SCM start_point,
+ SCM end_point,
+ SCM time_for_way,
+ SCM rest)
+ {
+ SCM loop = scm_from_bool (0);
+ SCM pingpong = scm_from_bool (0);
+
+ scm_c_bind_keyword_arguments ("create-fly-straight-animator", rest, (scm_t_keyword_arguments_flags)0,
+ scm_from_utf8_keyword ("loop"), &loop,
+ scm_from_utf8_keyword ("pingpong"), &pingpong,
+ SCM_UNDEFINED);
+
+ irr::scene::ISceneManager* smgr = unwrap_scene_manager (wrapped_scene_manager);
+ irr::scene::ISceneNodeAnimator* anim =
+ smgr->createFlyStraightAnimator (scm_to_vector3df (start_point),
+ scm_to_vector3df (end_point),
+ scm_to_uint32 (time_for_way),
+ scm_to_bool (loop),
+ scm_to_bool (pingpong));
+ return wrap_scene_node_animator (anim);
+ }
+
SCM
irr_scene_createRotationAnimator (SCM wrapped_scene_manager,
SCM rotation_speed)