Haven’t updated my reel for one and half years… finally updated it a little. The sad thing is the TRON LEGACY DVD is not out yet, so I don’t have too much TRON shots to put in… but anyway.. Enjoy
New Reel is up
January 27th, 2011Enroute Visual Effect Breakdown
June 6th, 2010Here is the breakdown for “Enroute”, a student film I worked on.
Enroute won 5 awards in the SCADemy awards at Savannah College of Art and Design.
• Best Cinematography
• Best Editing
• Best Production Design
• Best Graduate Film
• Best Visual Effects
Thanks Sandro Blattner put this together and thanks all the great work the visual effects crew have done.
En Route – VFX Technical Breakdown from Sandro Blattner on Vimeo.
Studio II project breakdown
March 14th, 2010This is the breakdown video for my studio II/independent study project:
The detailed page for this is :
http://linghaoli.com/blog/?page_id=151
point cloud API and usage
Back from Digital Domain
January 5th, 2010Just got back from Digital Domain internship.
The 3 months internship was awesome and I learned a lot. I got involved a lot of stuff and met so many awesome people that make things happen. I really appreciate the experience.
Basically I worked on one shot in Tron 2.
Wrote and maintained several pipe line shelf buttons(with python) to help lighters in my sequence.
Created and maintained the render template for my sequence (100+ shots)
Got into some Maya API stuff, and I will continue working on it this quarter.
Worked on some look dev for my sequence.
Thanks to all the DD folks!
Preparing for Siggraph
July 31st, 2009I updated my demo reel a little bit, and kicked out some old stuff out of my reel.
Since I used the accumulated displacement technique in my recent centipede shot 02, I could remove this one below from my reel:
accumulated displacement
Hope I could get some good feedback at Siggraph..
More about Occlusion(part III)
July 22nd, 2009There is a siggraph 2002 paper talking about how the ILM uses “Reflective Occlusion” and “Bent normal” techniques to generate fast and reasonablely accurate fake GI passes for light.
First we start with a reflective occlusion pass, actually it’s very easy to set up in the mib_amb_occlusion:

Reflective Occ shader set up
This shader set up makes sure we are using “reflective occlusion” instead of ambient occlusion.
The image below shows the difference of normal Ambient Occlusion and Reflective occlusion. Obviously the reflective occlusion is more rely on camera angle and the surrounding objects:

compare of Reflective Occ and Ambient Occlusion
And below is the compare of a same reflective occ pass with 2 different reflection passes:

result of reflective Occlusion
Then, it comes to the bent normal part. The goal of using this technique is to get a flexible fake GI pass (or indirect light pass) based on the given environment image.
Before we use the mib_bent_normal_env shader in MR, we need to do:
a. Bake(use mib_lightmap_write) the ambient occlusion into texture, before that we need to UV the geometry properly , in my case is the skull model, without too many overlapping areas.
b. Bake(same as “a”) the bent normal into texture, just change the mode from 0 to 2(world space ) or 3 (object space) in the mib_amb_occlusion shader.
Then set up the mib_bent_normal_env as below:

mib_bent_normal_env set up
And the render of mib_bent_normal_env will look like a GI pass based on the env map we provided:
Here is the result:

result of bent normal render and usage with reflection pass and a key light pass
In the siggraph paper, mighty ILM people were using customized Renderman shader to generate the reflective occlusion, baked AO and bent normal, and shader to use the baked textures. I tested with Mib_ambient_occlusion instead, but the whole idea is pretty mucn the same.
Be to noticed: this technique is not suitablt for a deforming object, and dramatic camera movement may also cause problem because of the baked textures.
Originally I did this test just for a fake GI test for a student film project I am working on. But I also had fun while was playing this, which is important ^____^.
A recent project
July 13th, 2009centipede project shot01
centipede project shot01
Updates comming soon
More about Occlusion(part II)
June 17th, 20093D collab class I helped with
The shot above was from the 3D collab class I helped with last quarter.
Since there were all Animation kids in their class, they needed some VSFX help.
I helped them set up almost everything such as lighting, shading, render passes, and compositing.
And a interesting stuff for me was to set up the Occlusion pass with correct refraction in it.
Usually when render the occlusion pass, we exclude all the “glass” and any other “transparency” objects from the render layer.
However, the master layer has been rendered with all the objects(including the refracted objects behind the machine’s glass containner in the shot above), so when it comes to the Occlusion pass, if the Occlusion haven’t been refracted, the final comp will not look correctly.
There are two ways to add the occlusion into the master layer.
1. One easy way to do it is using Mental Ray’s Mia-x material, and turn on the Ambient Occlusion on:

AO in Mia material
And all the occlusions will be rendered in the master layer.
2. If user were not using Mia material, it will be a huge pain to change all the shaders to Mia materials..
So the second way to achieve the “occlusion with refraction” is to :
a. Assign the “miLabel” to objects in the scene.
b. Don’t exclude the glass container of the machine. Instead, assign a miLable to the glass such as 2, then set the mib_AO shader’s attribute “ID Nonself” the same as the glass’s miLabel(in this case is 2). When set up like this, the glass container will not cause any occlusion to other objects in the scene.
c. Instead of connect the mib_AO shader to the surface shader directly, connect it to a mib_refract shader(can be found in the sample composition tab) like this:

use mib_refract shader
set the Refraction value to 1(or lower than one for not 100% transparanted glass), and set the “Index of Refraction” value exactly the same as your glass shader’s IOR value in the master layer(You could even write an expression to connect this two values if you are geeky enough).
After this, we will get the “refracted Occlusion”:

Result of Refracted Occlusion
Hope this will help.
A little more..
Also, with similar set up, we can play with Occlusion even more. For example, I created the model of the feathers by overlaping poly planes with transparency maps. And with proper set up, I can render the occlusion like this:

Feather AO by using similar set up
Give it a try if you want, it’s really fun ^______^.
More about occlusion (part I)
June 16th, 2009For example, I have a scene in the image below:

screen shoot of the examplescene
when using the MR shader mib_amb_occlusion node, if we want to render a pass that has the occlusion of the sphere rendered with out display it, normally we can just turn the sphere’s “primary visibility” off. It fits 90% percent of this kind of situations.
However, if user want not only the sphere’s occlusion be rendered, but also none of the boxes generate occlusion, it will be problem because if I turn “primary visibility” of all the boxes off, nohing will be rendered, and if not, the occlusion of sphere on boxes and the occlusion of boxes themselves will be rendered altogether, below is the undesirable result I got if just turnning the “primary visiblitiy” off:

rendered image with sphere's "pri visibility" off
Obviously, the occlusion inbetween the gaps of the boxes are sometimes not we want…
This is when the “ID Inclexcl” “ID Noself” attribute come into handy.
Actually, the djx blog has a really good explain to this:
One important thing to notice is that the “miLabel” attribute is case sensitive.
And for sake of saving time, I wrote a script for assign the “miLabel” attr to all the selected objects.
Again, since it’s a reall small script, I wrote it with Python in Maya:
Copy the code into the Python tab of the script editor and use it….
After assign the miLabel to the boxes and sphere, I assign all the boxes’ miLabel =3, and assign the miLabel of the sphere to 1.
Moreover, correspondingly, assign the mib_amb_occlusion shader like this:

assign the ID correctly
Then we will get the desired result:

result of correct ID set up in the shader
With this set up, we can have only the sphere’s occlusion that affect the evironment…..
A little script to add the light annotations
June 4th, 2009Inspired by my Friend Al Torres, I wrote a script to add annotations to all the lights in the scene.
Also, if lights’ names have been changed by usrs, re-run the script will update the annotations.
Since it’s very small script, and I don’t want people bother too much to install pymel, I wrote it with default python for Maya script. This scriptif for usr has a lot of lights in the scene and might have a hard time to remember which light is for what…
Also, name the lights properly before using this script will be a good choice.

annotations added and updated
Here is the script:
Copy the codes and run in scripts editor. Hope this will help
Update: The last version of script has some bug: if a light in the scene has more than one children node, the script will not working due to my cheesy approach of finding the annotation node. For example:
annoying camrea with the light
Sometimes Maya attaches a camera node to a light when duplicating it, the refined version of the script will delete the camera nodes attached to the light. Also, the script will check each children node of a light, make sure there is an annotation node in it. If yes, just update the light’s name when necessary. If not, create the annotaion.
Here is the refined version: ling_annotation_refine

