Monday, May 23, 2011

die scene

http://ae.tutsplus.com/tutorials/motion-graphics/create-whispy-spirit-like-text/

Sunday, May 22, 2011

Loop sound


1:  //Stop at this frame
   2:  stop(); 
   3:   
   4:  //Create a new sound object
   5:  var music:Sound = new Sound()
   6:   
   7:  //Set location of sound file – if it is external – using a URLRequest object
   8:  var req:URLRequest = new URLRequest("audio/bongos.mp3");
   9:   
  10:  //Create a new SoundChannel object
  11:  var channel:SoundChannel; 
  12:   
  13:  //load music file – via url request object – into channel object
  14:  music.load(req);
  15:  playMusic(); 
  16:   
  17:  //Boolean checks if the sound is playing
  18:  var musicIsOn:Boolean = true;
  19:   
  20:  //An event listener for a button that stops the music (YOU DONT HAVE TO PUT THIS IN)
  21:  btnMusic.addEventListener(MouseEvent.CLICK, stopMusic); 
  22:   
  23:  function stopMusic(evt:Event):void {
  24:      if(musicIsOn)
  25:      {
  26:          trace("stop");
  27:          channel.stop();
  28:          musicIsOn = false;
  29:      } else {
  30:          playMusic();
  31:          musicIsOn = true;
  32:      }
  33:  } 
  34:   
  35:  function playMusic():void{
  36:      trace("play");
  37:   
  38:  //play music through the SoundChannel
  39:      channel = music.play();
  40:   
  41:  //add an event listener that reacts when the sound being played 
  42:  //is completed and repeats the sound
  43:      channel.addEventListener(Event.SOUND_COMPLETE, repeat);
  44:  } 
  45:   
  46:  function repeat(evt:Event):void {
  47:      if(channel != null)
  48:      {
  49:   
  50:  //without removing the event listener the sound clip will play only twice
  51:  //I am not sure why but it feels like the event listener gets disposed of
  52:  //once used by default.
  53:          channel.removeEventListener(Event.SOUND_COMPLETE, repeat);
  54:          playMusic();
  55:      }
  56:  }

Saturday, April 9, 2011

Sample screen grab of AE

Here are sample screen grabs of the effects we're going to implement on the clips of the twins.


Thursday, April 7, 2011

Eye Replacement in AE

Here's another effects tutorial I found that could be useful to add the "creep" factor on one of the twins.

Eye Replacement Tutorial

Wednesday, April 6, 2011

Demon Face Warp in AE

Here's a link I found that we could use for editing our jump shots for our game. It will work well on one of the twins when she's hiding in the dark.

Demon Face Warp Tutorial

Saturday, April 2, 2011

Recorded all audio: check

We have recorded all our audio tracks using Pro tools. The voices were done by Claire, Justine and me. I will be working on the tracks and mixing it together in Adobe Soundbooth so I would be able to work on it from home. It will be saved as a .wav file so it will be easier to transfer in Flash.