Pages

Wednesday, 19 November 2014

Nuke Baby Nuke

Another assessment post. Last one for now, I promise.

Nuke has become real fun over this course although I wish I figured out my dynamics earlier so I gave myself more time to comp, Future lessons.

 A blog post wasn't in the assessment description but I have to get used to this blogging thing a little more cause I'm always forgetting. The good news is because this isn't an official hand in blog post I don't have to get detailed, in fact I'm not gonna get detailed at all. Yep thats right I am just gonna ramble on about nothing and see how long you continue to read it thinking you may get some valuable, life enhancing knowledge about my experience doing this assessment. You won't find any of that here, no, but you will find a screenshot of my script taken so far away all you see is the pretty colours of the nodes.

Stunning.

You're still here?
Why?

Ok, ok I better teach you something for sticking around against all good judgment. You must be bored...I've been there broski. Here is the video of the comp I ended up with which looks way better on my badass cintiq than a normal monitor.


What have I been taught? I hear you asking. Well you, my friend have just discovered that Rick Springfield makes fantastic music. 'Sign of Life' from his Songs For the End of the World  album is playing on that video and that album has just entered your shopping list.

You're Welcome

Stay Frosty



Tuesday, 18 November 2014

Programming Assignment

Alright so here is another assignment post. This time it is the magical land of programming. The assignment required the creation of a script and the explanation of said script.

Script Overview: The script I made randomises vertices's on a mesh and places them at random co-ordinates each time it is run. I choose to go with this script  as I didn't want to go to complex and cause myself frustration.

Development Process: The first thing I did was create the 'for' statement that would grab all the verts on the mesh and move them to a random co-ordinate within a delegated range. When I had that all working I put the 'For' statement within a proc and created a window for it to pop up in and allow a button for the user to press to run the script at anytime. Below is the script as I made it.

//select the mesh you desire to randomise the verts on and run script
//Click button with mesh selected and BAM the verts randomise

if(`window -exists rVerts`)//Checks to see if window exists
deleteUI -window rVerts;//If the window exists it is closed

window -title "Randomize Verts" //Puts a title on the window
       -widthHeight 100 100 //Width and Height of window
        rVerts;
columnLayout;//The type of layout of the window
button -label "Randomize" -command randomVerts;//the button name and command it will execute


showWindow rVerts; //shows the window

proc randomVerts()
{
$Selected = `ls -sl`; // this line lists the selceted objects and defines what $selected will do
$myVerts = `getVerts`; // this line grabs all the vertices of selected objects and puts them into a string array represtented by $myVets


         for ($vert in $myVerts) // this line says for every Vertice selected in the array of $myVerts to run the following commands
         {   

         float $randNumX = rand ( -0.5, 0.5 );//this line defines how many units the verts will randomly move vertices in the X axis
         float $randNumY = rand ( -0.5, 0.5 );//this line defines how many units the verts will randomly move vertices in the Y axis
         float $randNumZ = rand ( -0.5, 0.5 );//this line defines how many units the verts will randomly move vertices in the Z axis

         select -r $vert ;//this line replaces the mesh selection with the selection of the vertices within the selcted mesh
         move -r $randNumX $randNumY $randNumZ ;//this line moves the verts randomly according to the values defined above
        
         select -r $Selected; // returns or reselectes the previously selected object
}
}
Reflection: Being my first experience with programming I am quite happy with the script I have created. The course, along with the text book MEL Scripting for Maya Animators by Mark R. Wilkins, Chris Kazmier and Stephan Osterburg , gave me a basic understanding of MEL programming which I believe will be extremely valuable in the future.

Stay Frosty

Sunday, 16 November 2014

That UFO Project again

Alright, alright it is time for another post about the UFO project. There is still some comp work to be done but I have until Wednesday to toil away in Nuke. This is just to focus on the Dynamics aspect. The first post showed the work in progress shot I submitted for feedback.

A quick rundown of the feedback went like this:
  • The outer cone was to still and needed more particles
  • The beam of light that came down was good but re-timing needed to be considered and a colour change was necessary
  • The particles in the middle where out of place
  • Consider change the middle particles to a beam or something that reaches the man instead
  • Consider more rings of light
I tried to address these issues in my new submission which will be shown shortly so calm down. First i will outline the way I went about trying to address these issues.

With the outer cone I added more particles, added rotation to the geometry that i was emitting off and used a volume axis field to added some more movement and separation.

The ring/beam of light was re-timed and colour corrected in Nuke instead of re-rendering. Time saving at its finest.

I changed the particles in the middle to be tighter and flow all the way to the ground, also adding a glow effect.

I tried some pulsing rings of light but i just couldn't get them to look good enough so I scrapped them.

Below is the video. No music on this one but I promise there will be some rockin' tunes on the updated comp.





Overall I'd say I learnt a lot through my first journey into the world of dynamics. Am I happy with the final result? Not at all but live, learn and be better next time.

Stay Frosty
 

Monday, 3 November 2014

Dynamic Floating Man Tutorial

Remember that assessment that was mentioned in the earlier post? Yeah that UFO one mentioned here. Well this tutorial is also apart of that assessment. The idea is to be able to have the mannequin model float up to the UFO dynamically.

Bullet will be used to achieve this effect so it will need to be loaded before attempting this tutorial. If you don't know how to do this go into Windows>Settings/Preferences>plug-in manager and load Bullet as shown below.
Now that that is taken care of we can start the tutorial.

1. Load up your Mannequin

2. Create joints for the Mannequin model (animation tool set: Skeleton>Joint Tool)

3. Bind the mesh to the joints (animation tool set: Skin>Smooth Bind). At this point you can paint weights on the mesh to have it deform better.

4. Select the joints and from the Bullet menu select 'Create Rag doll from Skeleton and you Will get capsules around the joints.

5. Create a ground plane to test the collision on the capsules. With the plane selected use the 'Create Passive Rigid Body' option.

6. Press play and the capsules should fall and collide with the ground plane. If they explode then your joints starting point is intersecting the ground plane so move it so they don't start of intersecting.

7. Now to make the joints follow we need to Parent Constrain the capsules to the corresponding joints using the below options.

8. When play is pressed now the joints will follow the capsules.

9. To get it float up go into the bulletShape node and change the Gravity option to 9.8 in Y in the basic fields options. Press play and the Mannequin will float up.

 10. Now that your Mannequin is dynamically floating you can select the capsules and go into their bulletRigidBodyShape and tweak the forces/impulses options to make joints react differently to the gravity.


There you have it. A dynamically floating Mannequin.

Stay Frosty

Tuesday, 28 October 2014

Quick Al Swearengen Drawing

"I wouldn’t trust a man who wouldn’t try to steal a little."

Quick drawing I did of Ian McShane as Al Swearengen from the amazing TV show "Deadwood". Been watching Deadwood for the fourth time and since I am stuck in bed with a back muscle strain I tried my hand at doing a quick drawing. Time was about 1 hour and 20 mins or one episode of TESD.






Stay Frosty

UFO Project Work in Progress Update

Alright, so been doing this UFO dynamics assignment and totally forgot about the blog part of it after some comlications with getting the main part out but I didn't want to deprive the world of seeing where I am up to with it so better late than never right? right?

The assignment requires us to create a Tractor beam for the UFO using dynamics. First things first was looking at some interpretations of other UFO tractor beams and things of that nature for reference materials.

The following are a selection of images I used for reference during this process:




How good was War of The Worlds? Just saying, Watch it.

As you can see my reference contained alot of blues as that was prefered in the assignment brief. 

The Way it Went

My tractor beam in this first progress step consisted of three parts. The first part was the outer beam which was made by using a poly cone and animatiing it to how I wanted the cone to take shape and emmiting particles from it. I still need the paricles to move abit more instead of being such wallflowers. Here is a beautiful screen shot of my poly cone in action:


When I had the outer cone all setup I wanted something different. After trying to create some tendrils and other spining things I really wasn't feeling so I thought id try a brighter outer ring that comes out of the UFO super bright and dies off as it goes down the cone. I used a poly again to animate the particles but I animated the glow attributes on the shader to get the intense glow effect.

I added an omni emmiter in the middle just to try and a fill it out alittle better. I had it effected by a gravity field so it fell down.



You can see the 3 passes in the video below.

The song ofcourse is Rock Bottom by UFO. See what I did there? clever right? I know, I know...genius.

Stay Frosty

Wednesday, 13 August 2014

Hannibal


So I was requested to do drawing from a character frm the TV show Hannibal. I have seen the movies (great movies) but I have not watched the show but it was fun to do.
I have been re-watching Deadwood for the 5th time and it is amazing but you already knew that. If you are sitting here wondering "What is Deadwood?" then shame on you. Seriously SHAME. Brilliant TV show, second only to Dexter and possibly Sons of Anarchy. Deadwood drawings are most likely in my future.

Also before you watch Deadwood watch some Robin Williams movies! The man was brilliant. His movies Hook, Aladdin, Mrs. Doubtfire and Jumanji were huge parts of my childhood. Especially Hook! I have seen Hook so many times and I still love it.  I have to say one of my all time favourite Robin Williams performances was in 'One Hour Photo' I won't lie that movie scared me the first time I watched. He just played the character so well and was so believable, Watch that movie and his Guest role on Law & Order:SVU. Robin and Jerry Lewis are my two favourite guest performances on that show so make sure you watch them because you will be doing yourself a dis-service if you don't. Robin William's work will live on for gernerations.

Stay Frosty

Tuesday, 22 July 2014

Paul London Artwork Project

Thanks to the WWE Network I rediscorvered Pro-Wrestling. 5 years ago I decided to give wrestling up after being a fan for 16 years because I was going through a weird time where i didn't want to be myself anymore so I stopped watching wrestling,quit dreaming of working in the wrestling indusrty and sold all my wrestling merchandise which was alot of stuff. After watching Wrestlemania 30 and seeing guys I used to follow on the indy scene making it big like Tyler black and Bryan Danielson I started watching again.

The first time I watched indy wrestling was when I downloaded Paul London vs Michael Shane in a street fight from ROH. After seeing that match I needed more Paul London matches so I started buying ROH DVDs and then he showed up in WWE. London was the first wrestler I was a huge fan of before they made it to the bigger companies so he will always be my favourite.

We bought tickets to go see the WWE in Sydney so I knew I wanted to wear a Paul London shirt. Since I had worn my London and Kendrick shirt so much it fell apart and i couldn't find one online I thought i'd make one. So here is my Paul London art project from start to finish.

Stay Frosty




 
 
 
 

The art on a shirt and The Cabanaramma Headband from Coltmerch.com that I will be wearing to the WWE event cause i'm cool.






Friday, 20 June 2014

Tina Belcher Fan Art

Here is an artwork of Tina Belcher I did after watching Bob's Burgers all weekend.


And here it is on a pillow!
http://www.redbubble.com/people/stevencraigart/works/12133182-tina-belcher-phone-number
Also available on iphone covers, shirts, ipad covers and more HERE
Stay Frosty

Tuesday, 27 May 2014

Cartoon Laura

Here is a few shots of the Cartoon Laura Character for LauraJeanDesigns.com




Stay Frosty

Monday, 19 May 2014

Welcome to Shredder's Nightmare

In 1986 Master Splinter recorded a concept album featuring 11 tracks that detailed what he was going to do to the Shredder when he got his hands on him. Alice Cooper himself even guest starred on a few songs

Stay Frosty

Sunday, 4 May 2014

Laura Update

Here is an update of where I am at with the character for LauraJeanDesgins


Stay Frosty

Sunday, 27 April 2014

Regular show model week #22

This weeks model in the Regular Show challenge is the Video Store Guy from the episode 'Brian Eraser'. I have decided to take a few weeks off from doing the challenge as class is starting agian and I want to devote more time to other projects but I will continue with the challenge in the near future.



Check out the all the model posts here

Stay Frosty

Paul London WIP Part 2

Here is the second part of my Paul London Project (see what I did there). I will fix some little problems when I colour it.


Now sit back and watch this classic Paul London Promo with Bryan Danielson (WWE's Daniel Bryan)  and join the swarm or the pod.



                                  
Stay Frosty

Monday, 21 April 2014

Paul London Artwork WIP

Here is the first part of a Paul London Project (wink wink go buy the Paul London Project available now at Highspots.com) I have started after I have rekindled my childhood obsession with pro-wrestling thanks to the WWE network. When it is all done I will write more on it but for now you can see what I have been doing with my time.


Also if you are a fan of Paul London watch this now and prepare to laugh. 

                                    

Stay Frosty

Laura Character WIP

Here is how the Laura character is looking. I have been procrastinating hard on this because it has been soooo long since I modeled a character and I keep redoing stuff and getting frustrated which leads to drawing instead.


Based on the above picture from laurajeandesigns.com




Stay Frosty

Regular show model week #21

This weeks model in the Regular Show challenge is the $8 version of the promotional Ice Sculpture from the episode 'Party Pete'







 I should have spent more time making the ice shader better but hey I didn't.

Looked all over for the Party Pete music to use but luckily i didn't find it so I could put Vanilla on it. Everyone loves Vanilla Ice, If you don't you must be a disgrace to the human race.

Word to ya mother.

Stay Frosty