found the fix for the sdk function.... seems it's a thing with editable mesh interface i.e. when it's being edited so you have to enclose your code with.... MeshDeltaUser* mdu = (owner) ? GetMeshDeltaUserInterface(owner) : NULL; if (mdu && mdu->Editing()) mdu->ExitCommandModes(); ...... if(mdu)…
When creating a material/shader and using file textures you also get Texture2D nodes as input nodes to the file textures. It's these Texture2D nodes that hold the values you can use to animate the UV's. I think it's the offset UV values you can use. This will "scroll" the texture as a whole. For certain parts of an uv and…
To delete a sub sequence I think you just have to go to the parent's Kismet and find the sequence node, then just delete it as you would any other node. To move it I would think you could just create a copy of it and make a new sub-sequence using the copied nodes, are you trying to move Kismet between levels or just within…
Sorry for the biggish image: Kept getting hung up on the sin/cos input. Docs say it takes radians, but it doesn't actually. 1 = 360 degrees = 6.2~~~ radians. -_- Anyway, that's a node translation of Rodrigues' Rotation Formula. [edit] I forgot to take the multiply node out before, so I've swapped it out for a power node…
Hotfix 3 doesn't fix issues with HQ rendering, only Viewport 2.0. Some people have had better luck rolling back to a previous driver and using HQ mode then, although I don't know if this will then mess up functionality with viewport 2.0...
Hey everyone, I’m looking to put together a small team to build a free Five Nights at Freddy’s fan game. This is an unpaid passion project for building portfolios, gaining game dev experience, and making something genuinely creepy. The Game: I am keeping the exact setting and lore under wraps to prevent the idea from being…
This sort of thing is where substance falls down. It's basically impossible to have dynamic length lists of inputs. You could certainly crop the text node output and feed the result to an fx-map based node but you'll still have to define every single possible input to that node. I expect you could use the automation…
{ string $currentSelect[] = `ls -selection`; duplicate -name ("NewObject_" + $currentSelect[0]); } $currentSelect is an array, so you have to reference an element of it. If you want it to work on everything you have selected: { string $sel[] = `ls -sl`; for ($node in $sel) duplicate -n ("NewObject_" + $node) $node; } IT…
Anyways, im new to the forums and was wondering if anyone could awnser some of the following questions to help me out to learn howto model. I AM a noob, so i dont know much about modelling. an could use some help.whats the best modelling program?(easy, free, fun)-dont say milkshape whats the best texture painter…
I've heard good things about Amplify. But I've changed jobs since, and not working in Unity anymore. Node editors for shaders all seem to support the same kinds of nodes, so it shouldn't be too hard to repurpose info between them. I was able to repro Unity shaders in 3ds Max using Autodesk's Shafer FX node editor. Let me…