I'm getting a new PC under 600 bucks because i'm broke right now. I'm thinking this type of PC from Tigerdirect. Any better suggestions i'm up for it. Here are the specs and it's a Dual Core and it's price is $499.99! Condition: New Lifestyle: Home & Student Operating Systems: Windows Vista Home Premium 64-bit Startup…
Hello, I've been using and experimenting with UDK last few months, so this will probably be easy as cake for most of you. I have an elevator set up, controlled with kismet and little unreal script (custom sequence action). The problem is with matinee animations. I have 4 floors and 4 switches (one on every floor). I also…
A wrote a mel script that bakes animations into blendshapes. What you can do with this: - Bake skeletal animations into blendshapes - Bake Ncloth, deformer, and MASH animations into blendshapes - Combine multiple skin mesh renderers into a single blendshape for Unity and other real-time applications. I need people to test…
I've decided to make a test with the baking in both softwares and here's the result. - Testing steps: bake normal map in Toolbag (TB), bake normal map in substance painter (SP), swap nomal maps to see the behaviour. - Tested objects: I made 2 objects which are the same as the picture below (1 Object includes sphere and…
I'm not entirely sure if you're suggesting to attempt to salvage a project by appending the contents of a file that can't be opened? Sometimes it works, but when the RNA structure of the file is broken it'll likely fail and there's pretty much nothing you can do to salvage it other than relying on different backups. I have…
Reminds me of something from Red Dwarf. You think this is their voting system: 1st = 3points 2nd = 2points 3rd = 1 point Judge 1: 1. Red 2. Yellow 3. Blue Judge 2: 1. Blue 2. Yellow 3. Red Judge 3: 1. Purple 2. Yellow 3. Red Judge 4: 1. Red 2. Yellow 3. Purple Judge 5: 1. Blue 2. Yellow 3. Red Red = 9 Blue = 7 Purple = 4…
Sorry to bump an old thread yoou can use thi sscript as a shortcut for #1 - mines alt + a (for align). it will align both the move and scale to to the selected face/edge's axis. global proc alignAxis (){$compselection=`ls -sl -fl`;if (`size($compselection)`){if (`size($compselection)`<=1){manipMoveOrient…
And what about solution like this? Shelf with script which is opening window for running other scripts (it's basic - concept): global proc runScript(){ string $script = `scrollField -q -text scriptField`; eval $script;}global proc LTMel(){ if (`window -exists LTMelWin`) deleteUI LTMelWin; window -title "Micro Mel Editor"…
[ QUOTE ] Samsung all the way. They actually will color match, unlike all the Dell monitors I've used. Depending on your budget you can always go with an LCD TV that does 1:1 pixel matching and supports DVI or use a DVI to HDMI cable to connect to the TV. Of those I would recommend the Sharp Aquos line for that use. One of…
For those of you who might find this via search I got some help on this and here's the script I ended up with. import maya.cmds as cm driver = cm.ls(sl=True,fl=1,tl=1) selectedObjects = cm.ls(sl=True,fl=1) selectedObjects.remove(driver[0]) for object in selectedObjects: cm.select(driver,object)…