About: This is a collection of intuitive, context sensitive tools to improve productivity that I did to improve my workflow as I transitioned into Blender. They are designed to be used as hotkeys, removing the amount of interaction with the menus and allowing for a less interrupted modeling experience. This is the first…
I know this isn't specifically about FWN, but for 'manual' adjustments, is it possible to completely destroy the normal influence of faces? For this example, the beveled faces have no influence on normals, instead taking their normals from surrounding faces. This results in some sweet arse highlights. The only way I could…
Available on Fab Showcase Video Contents: 1. Introduction 2. Initial Setup 3. Settings 4. Screenshot Maker 5. More 6. Changelog 1. Introduction Concept Art Shader 2 is a rework of the Concept Art Shader Pack, I created a few years ago. This new version not only improves the look, but also the usability greatly. It is…
Hi I found some script (Maxscript) for 3ds Max. "Single Skin Copy and Paste" The script copy and paste vertex weight between models. It works good but with only one select vertex. I would like to it to work with more vertex than only one. I mean if I'll secect 5, 12, 20 or more vertex. I'm not scripter so maybe can someone…
Hello folks, I created a small script that applies a lambert shader for each object selected. Installation instructions: -------------- Install in Mayas Script folder: C:\Users\[your username]\Documents\maya\scripts Call it by either calling it from MEL prompt or add a shortcut with LambertPerObject() --------------…
[ QUOTE ] any time there is something that can be turned into a conspiracy theory, some one will [/ QUOTE ] The idea that an election may have been rigged is a conspiracy theory; the concern about these voting machines is not. Whether or not they were actually used to rig an election, they still present a problem which…
I think you're doing too much work to achieve what you really want. You've hard-coded your joint names into your Mel, which leaves your script very local to your current application. Check out the code below which will toggle visibility on and off of descendant joints for any rig you are working on. // I've heavily…
[ QUOTE ] about your chosen 3d / 2d software? the main thing that cheeses me off about max its its inability to let me select the freaking poly i click on, here is a common conversation between me and 3ds max me: " hello max, i would like to sellect this ply that i am clicking on" max" ok so you want the poly behind the…
This week I completed the baking process and cleaned up all of the UVs to ensure everything is optimized and ready for texturing. I’ve started texturing the sniper and have made solid progress so far, focusing on establishing the core materials and surface detail. In addition, I modeled a gun case to help strengthen the…
You can write custom scripts to get around this with the ls -preSelectHilite (-psh) command. { string $preSelect[] = `ls -fl -psh`; string $select[] = `ls -fl -sl`; //If more components are pre-selected than selected if (`size $preSelect` > `size $select`) { select $preSelect; polyMapCut; select -cl; } //If you have more…