CGArt-中国CGer中的绿色家园
首页 信息动态 原创排行 互动教程 资源千寻 CG人才 CGArt杂志 艺术设计 CG画廊 CG论坛 酷站欣赏 CG搜索 会员中心
AE表达式小特效特辑——之二
作者:danche逃 编辑:紫星星 发布时间:2005年09月14日 04:32:27

1. 首先,先送大家一颗心。

2. 导入ae,花个mask稍微修饰一下,如图:

  3. 给位置加表达式:
  tMin = .25; //minimum segment duration
  tMax = 1.0; //maximum segment duration
  minVal = [0.1*this_comp.width, 0.1*this_comp.height];
  maxVal = [0.9*this_comp.width, 0.9*this_comp.height];

  end = 0;
  j = 0;
  while (time >= end){
  j ++;
  seed_random(j,true);
  start = end;
  end += random(tMin,tMax);
  }
  endVal = random(minVal,maxVal);
  seed_random(j-1,true);
  dummy = random(); //this is a throw-away value
  startVal = random(minVal,maxVal);
  ease(time,start,end,startVal,endVal)

4. 然后给scale加表达式:
  tMin = .25; //minimum segment duration
  tMax = 1.0; //maximum segment duration
  minVal = 25;
  maxVal = 70;

  end = 0;
  j = 0;
  while (time >= end){
  j ++;
  seed_random(j,true);
  start = end;
  end += random(tMin,tMax);
  }
  s = random(minVal,maxVal);
  endVal = [s,s];
  seed_random(j-1,true);
  dummy = random(); //this is a throw-away value
  s = random(minVal,maxVal);
  startVal = [s,s]
  ease(time,start,end,startVal,endVal)

5. 最后给旋转加表达式:
  tMin = .25; //minimum segment duration
  tMax = 1.0; //maximum segment duration
  minVal = 0;
  maxVal = 720;

  end = 0;
  j = 0;
  while ( time >= end){
  j ++;
  seed_random(j,true);
  start = end;
  end += random(tMin,tMax);
  }
  endVal = random(minVal,maxVal);
  seed_random(j-1,true);
  dummy = random(); //this is a throw-away value
  startVal = random(minVal,maxVal);
  ease(time,start,end,startVal,endVal)

6. 然后,copy上n次,随你意愿,接着加hue命令,调下颜色。

7. 照死里压,终于小于了200k。

完成,谢谢大家。

共有评论0条
更多评论..
作者信息 详细信息
评论人:
验证码:
内容:
 
about us advertisement publish conformity service cooperate associate link site map contact us help jump to the top of page