Thursday, June 21, 2007

http://willfinn.blogspot.com/2007/06/letter-from-ward-kimball.html

Wanna be Animator?...Read what you have to do!....

:)

Monday, June 11, 2007





!!???:D

Go and register .!..ehh

Looks like the old 10 sec club died some times ago...and now some ex AM students made the 11 one..:P


http://11secondclub.com/

Friday, April 27, 2007



Got it!.. a little picture of this big squirrel eating my cousin nuts next to my room window :D ehhe

Friday, April 13, 2007

heh a couple of weeks ago i had to do some video reference for an animation so i decided to go to a little park near home with my friend/housemate/AMclassmate/WorkMate/TheBoss, Manuel to record someting, and during the recording (actually at first i was the actor, than i asked him to act out my scene...) manuel started dancing like only him know how .. ahhe take a look at "The Boss Dance", is very funny :D.

the_boss_dance

Tuesday, February 06, 2007

I like to sketch when i'm animating, waiting for the playblast ,or when i'm doing nothing, is really inspiring(even if the result sucks..)
I still have to learn the basics of drawings, but i keep trying, any comments or suggestions is appreciated.

Bye

Wednesday, January 31, 2007

Frame Counter v0.2

enjoy :)

//////////////////////////////////////////////////////////
//Alfonso Sicilia www.alfonsosicilia.com
//Create FrameCounter v0.2
//Load and execute the script , this will auto create
// 1 shelf buttons on the current active shelf
//for switch the FrameCounter On and off .
//Thanks to my friend Lele "Midori" for the new cool one button
// switch version.


scriptToShelf "FcNt " " proc LeleAlf_dispFrCounter (int $sect, int $block){\r\tif (`headsUpDisplay -ex LeleAlf_CounterFrame`){\r\t\theadsUpDisplay -rem LeleAlf_CounterFrame;\r\t}else{\r\t\theadsUpDisplay -section $sect -block $block -lfs \"large\" -dfs \"large\" -command \"currentTime -q\" -atr LeleAlf_CounterFrame;\r\t}\r}\rLeleAlf_dispFrCounter (9,7);" "1";
editMenuUpdate MayaWindow|mainEditMenu;



//////////////////////////////////////////////////////////

Friday, January 12, 2007

Align Script, for easy aligning object during the rigging proces, with some little change you can align what you want, pivot,rotation only,move only ecc..

Just copy and create a new shelf button..

///////////////////////////////////////////////////////////////////////
//www.Alfonsosicilia.com Align objects script//
//Copy all and create a shelf button
//Select first object,then the second you want the first to
// be aligned to then Align!//

string $select[] = `ls -sl`;

float $pickRot[] = `xform -q -ws -ro $select[1]`;
float $pickPos[] = `xform -q -ws -t $select[1]`;

xform -ws -ro $pickRot[0] $pickRot[1] $pickRot[2] -t $pickPos[0] $pickPos[1] $pickPos[2] $select[0];

///////////////////////////////////////////////////////////////////////