Accidentally stumbled upon a technique for creating 3D pixel art! Using a very low resolution 'Remesh' setting under the Subtools menu, it'll create something similar to this:
Tuesday, May 20, 2014
Monday, April 28, 2014
DAILY DOODLES
This blog has become too much of a tech notes library, so here's some of my recent-ish digital 30min-to-an-hour digital doodles. Hopefully I can get into the habit of doing these "daily" again soon.
Wednesday, April 23, 2014
ZBRUSH: 32-Bit Displacements
http://funwithcg.blogspot.com/2011/06/rendering-32-bit-displacements-in.html
Wednesday, March 26, 2014
AFTER EFFECTS: Resize All Comps JSX Script
As part of the Magic Lantern raw workflow I'm slowly developing, I needed to resize all the footage comps to 1920x1080. For months I was doing it manually like a chump, highlighting each comp, hitting CTRL + K, and typing in "1920" into the width field.
NO LONGER.
Thanks to a Google search and a forum post by Dan Ebbert of motionscript.com, I now use a script to automate this task. I'm still working on the code to fit the contents to the new comp size, but it at least eliminates the tedious task of changing the comp sizes.
For those that have never ran an AE script before, you go under FILE > Scripts > Run Script File... But before that, you must create the JSX script file by opening the script editor. Once the script editor is opened, type or paste this into it:
for (var i = 1; i <= app.project.numItems; i++)
{
if (app.project.item(i) instanceof CompItem)
{
app.project.item(i).width = 1920;
app.project.item(i).height = 1080;
}
}
Once that's done, save it. Run the script and it'll change all the existing comps inside your project bin to the designated "width" and "height" values. You can change those numbers to suit your projects.
The difference that I've noticed is that the comp doesn't scale from the center, but from the upper left hand corner. Not a big deal for me since I need the contents of the comp to fill the full comp size, but definitely something to note.
For the time being, I'm using the good ol' CTRL+ALT+F command to fit the footage to the new 1920x1080 comp size. I'll update this post once I figure out how to resize to comp using the script.
NO LONGER.
Thanks to a Google search and a forum post by Dan Ebbert of motionscript.com, I now use a script to automate this task. I'm still working on the code to fit the contents to the new comp size, but it at least eliminates the tedious task of changing the comp sizes.
For those that have never ran an AE script before, you go under FILE > Scripts > Run Script File... But before that, you must create the JSX script file by opening the script editor. Once the script editor is opened, type or paste this into it:
for (var i = 1; i <= app.project.numItems; i++)
{
if (app.project.item(i) instanceof CompItem)
{
app.project.item(i).width = 1920;
app.project.item(i).height = 1080;
}
}
Once that's done, save it. Run the script and it'll change all the existing comps inside your project bin to the designated "width" and "height" values. You can change those numbers to suit your projects.
The difference that I've noticed is that the comp doesn't scale from the center, but from the upper left hand corner. Not a big deal for me since I need the contents of the comp to fill the full comp size, but definitely something to note.
For the time being, I'm using the good ol' CTRL+ALT+F command to fit the footage to the new 1920x1080 comp size. I'll update this post once I figure out how to resize to comp using the script.
Thursday, January 23, 2014
V-RAY: GI Helps with Noise
While following this tutorial:
http://www.vray.com/vray_for_3ds_max/tutorials/rendering_an_interior_scene_tutorial.shtml#Part_I:_Adjusting_the_GI_settings
I did a few tests on a current project I'm working on, and GI on default settings help smooth out the image in terms of noise.
http://www.vray.com/vray_for_3ds_max/tutorials/rendering_an_interior_scene_tutorial.shtml#Part_I:_Adjusting_the_GI_settings
I did a few tests on a current project I'm working on, and GI on default settings help smooth out the image in terms of noise.
Wednesday, January 22, 2014
PHOTOSHOP: Precision Cursor Mode
CAPSLOCK-ON will enable precision cursor for brushes, and CAPSLOCK-OFF will return them to their normal cursors.
PHOTOSHOP: Interactive Brush Resizing
Holding ALT+RMB dragging will let you interactively resize your brush in Photoshop.
Subscribe to:
Posts (Atom)