|
DMTools Xtras是7个Xtra插件,包括DMFade,DM Transition Pack 1,DM Transition Pack 2,DM XTreme Transitions,DM Waves Effect,DM Stars Field Effect,DM ChangeRes。除了DM ChangeRes免费外其余均为共享软件。安装的方法非常简单,把.x32文件复制到Director的Xtras目录中即可。前面的4个(DMFade已经包括进了DM Transition Pack 1)是Director里的转场效果插件,所以也没有什么好讲解的,Director里原来的怎么用这些就怎么用。我只把DM Waves Effect,DM Stars Field Effect,DM ChangeRes详细说一下,其实都非常简单,几乎没有什么好说的,本来想偷懒找两个简单地来写,但是太简单了反而不知道说什么好>_<
要看实际效果的话,这里有官方制作的演示,自己去下载来看吧! http://www.dmtools.com/dmtools/dmexample.zip(2125Kb)
DM Transition Pack 1 v1.3 ========================== DMColor DMFade DMWipe Down DMWipe Left DMWipe Right DMWipe Up
DM Transition Pack 2 v1.3 ========================== DM Close Down DM Close Up DM Cover DM Page Peel Left Down DM Page Peel Left Up DM Page Peel Right Down DM Page Peel Right Up DM Page Turn Left Down DM Page Turn Left Up DM Page Turn Right Down DM Page Turn Right Up DM Swap DM Twirl DM Zoom In
DM Xtreme Transition Pack v1.4 =============================== DMXT Glass DMXT Laser Wipe Type 1 DMXT Laser Wipe Type 2 DMXT Pixelate DMXT Ripple Fade DMXT Ripple Fade Light DMXT Roll Down DMXT Roll Up DMXT Threshold DMXT UnRoll Up DMXT UnRoll Down DMXT Wipe LeftRight DMXT Wipe UpDown DMXT WormHole In DMXT WormHole Out
DM Waves Effect v1.0 ========================== 这是一个非常有趣的Xtra插件,它可以在一张图片上产生如水波倒影般的动态效果,通过一个简单的控制菜单或lingo就可以对波纹及持续的时间进行控制。 具体的过程是,选择Insert->DMToolsMedia->DMWaves Effect会出现一个对话框,里面列出了当前Cast表里的图形Cast,从中选择一个想做效果的即可。对波纹和持续时间的控制有两种方式,一种是通过属性菜单,另一种是通过lingo。属性菜单如下,Frames Duration是对持续时间的控制,数值越大水波的速度越慢;Wave Ripple是对波纹的控制,数值越大水面越平静。 <图片一>
通过lingo控制所插入名称为"DMWave"的DM Waves Effect Cast -- 放置到当前位置的左上角 set the regPoint of member "DMWaves" to point (0,0)
-- 放置到当前位置的右下角 set rightEdge = the width of member "DMWaves" set bottomEdge = the height of member "DMWaves" set the regPoint of member "DMWaves" to point(rightEdge, bottomEdge)
-- 关闭动画 set the animate of member "DMWaves" to 0
-- 打开动画 set the animate of member "DMWaves" to 1
-- 设定Frames Duration为12 set the frames of member "DMWaves" to 12
-- 设定Wave Ripple为5 set the wave of member "DMWaves" to 5
通过lingo控制Score里的Sprite -- 关闭sprite 1里的DMWaves Effect效果 set the animate of sprite 1 to 0
-- 设定sprite 1里的DMWaves Effect效果的Frames Duration为12 set the frames of sprite 1 to 12
-- 设定sprite 1里的DMWaves Effect效果的Wave Ripple为12 set the wave of sprite 1 to 5
DM Stars Field Effect v1.0 ============================== 这个插件可以产生非常富有动感的星空效果。与DMWaves Effect相同,通过控制菜单或lingo可以对星空的属性进行调控。 <图片二>
调整Base Imag可以对星空的象素尺寸进行控制;Stars number是星星的数量;Speed是飞行的速度,设置为0则动画停止;Director lnks控制墨迹效果的开闭。
通过lingo对速度进行控制 --设定名称为"DM"的DM Stars Field Effect Cast速度为8 set the speed of memeber "DM" to 8
--设定sprite 1里的DM Stars Field Effect速度为8 set the speed of sprite 1 to 8
DM ChangeRes v1.0 =========================== 把DMChangeres.x32复制到Xtras目录中。
-- 将分辨率设置为640x480 set oldRes = changeres([640,480])
-- 将分辨率设置为800x600 set oldRes = changeres([800,600])
-- 在影片开始时切换至640x480 on startMovie global oldRes set oldRes = changeRes([640,480]) end
-- 退出时返回原来的分比率。 on stopMovie global oldRes changeRes(oldRes) end
~~~~~~~~~~~~~~~~~~~~ 官方提供的演示。 http://www.dmtools.com/dmtools/dmexample.zip(2125Kb) |