Backface Culling in Blender

Backface culling in Blender is set in two places, for solid view and for material view: Solid View In Solid view, i.e. Matcap, Studio etc. it is set from the topbar dropdown as shown below: Material View In Material view, i.e. EVEE is it set in the shader panel on the right, as shown below: Advantages Using backface culling allows the user to see through the backside of geometry. This is handy for looking at the bottom of objects, through a ground plane for example....

October 3, 2022 · Mark

Empty Pie Menu Blender

This is the basic structure of a Pie Menu in Blender using Python import bpy from bpy.types import Menu, Operator bl_info = { "name": "", "author": "", "version": (0, 0, 0, 1), "description": "", "blender": (2, 80, 0), "category": "3D view" } class VIEW3D_MT_PIE_template(Menu): # label is displayed at the center of the pie menu. bl_label = "Operations" bl_idname="mesh.mypie" def draw(self, context): layout = self.layout pie = layout.menu_pie() pie.operator("auto.smooth") ​ def register(): ​ bpy....

June 12, 2021 · Mark

Busy with kits

Over the last few weeks I have been busy in Blender using the Decalmachine add-on to create some decal textures from Blender. You can find all my assets over at Gumroad. For more information on the assets for Blender and Modo just visit the link above.

February 20, 2021 · Mark

Blender Internal HDRI

Location of the original world HDRI environment map As you can see the names used internally in Blender and the actual file names are different this makes searching for them difficult so I am sharing the list here: City: Portland Landing Pad Courtyard: Courtyard Forest: Ninomaru Teien Interior: Hotel Room Night: Moonless Golf Studio: Studio Small Sunrise: Spruit Sunrise Sunset: Venice Sunsets They are all available on HDRI Haven

November 26, 2020 · Mark

Industry Standard Blender Axis Snapping

Now that Blender has an option for a more Maya like mouse manipulation workflow, and I am back looking at it once again, I noticed one thing I missed from the default Blender mappings… In the default Blender mouse set up you can use the Middle Mouse and the ALT key to perform Axis Snapping and get a quick way to view Left Right Top Front etc. Orthogonal Views. When I switched over to Maya like I thought I had lost this function, as it uses ALT as the main key for manipulations....

May 26, 2020 · Mark

Modo: Vertex Normals to Hard Edge

In Modo importing CAD files that have been converted to a Polygon format such as LWO FBX or OBJ often contain a Vertex Normal Map. Exporting from Moi3d as LWO works well for example until you change anything on the imported mesh. I got a nice tip today from @funk on the Modo slack group it basically replaces the Vertex Normal map with a Standard (as of 13) Hard edge workflow....

April 12, 2020 · Mark

Modo Slowdown after crashes

If a program appears to crash to often Windows may apply a control Shim to monitor the app, this can cause slow operations in Modo such as UV edits. To check if windows is applying a shim: Press start and in the search type regedit.exe and hit enter Go to this folder: HKEY\_LOCAL\_MACHINE\SOFTWARE\Microsoft\FTH\State If modo is listed in there, then a shim is being applied. To remove the shim Press start and in the search type cmd....

December 28, 2018 · Mark

V-Ray License Server Error 200

I recently had a problem with the V-Ray license server on Windows returning and error -200 when I tried to render. It turns out the error is because the VRL service wasn’t running and no amount of reinstall and reboots helped. Thanks to the help of friend I was able to resolve the issue by deleting a folder located at: C:\Program Files\Common Files\ChaosGroup Uninstall the License Server from the machine Then delete the folder <code>C:\Program Files\Common Files\ChaosGroup Reboot the machine to reset the Windows Services Install the License server, it should ask for log in data now....

December 14, 2018 · Mark

Associate .vrimg files with Photoshop

vrimg files are not associated with any program in Windows by default, they may be associated with the Chaos Group PD Player. Also it doesn’t appear that open with creates an association as expected therefore one may have to use the command line function ftype to achieve the desire association. The general way to associate files using terminal commands is as follows: Open cmd.exe with administrator rights (right-click on the shortcut to get this option) Type ftype extfile="C:\Program Files (x86)\YourProgram....

December 7, 2018 · Mark

Shadow Catcher Setting V-Ray

These are the basic Shadow Catcher settings I use in Modo. The main thing is the Alpha Contribution set to -1 in the V-Ray Object Properties.

July 13, 2018 · Mark