New pages
Jump to navigation
Jump to search
- 15:36, 1 July 2023 Blender 101 (hist | edit) [2,828 bytes] Bernie (talk | contribs) (Created page with "==Learning Blender== I'm slowly catching up and trying to learn blender so I'm just writing down a few things that frustrate me as an old maya/houdini user, and answer it as i go. === How do I animate text ? === Apparently you can't keyframe text easily. That sucks. However you can open up a python script <pre> # assumes you have a text object called 'Text' import bpy scene = bpy.context.scene obj = scene.objects['Text'] def recalculate_text(scene): text = '--'...")
- 14:11, 7 June 2023 AFX Shelf (hist | edit) [28,592 bytes] Bernie (talk | contribs) (Created page with "Saved from the wayback machine, thank you the wayback machine. Old but might help. <pre> //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Quick_Fx_Palette 1.2 moded from script by Fred CRETET ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////...")
- 16:24, 26 May 2023 Nuke Python Temp (hist | edit) [3,741 bytes] Bernie (talk | contribs) (Created page with "===Switch off heavy nodes=== ====Simple==== Will toggle on/off all the nodes in the list <pre> disableList = ['Defocus' , 'VectorBlur', 'iBlur', 'Convolve', 'MagicDefocus.gizmo'] toggle = -1 nodes = nuke.selectedNodes() if not nodes: nodes = nuke.allNodes() for n in nodes: if n.Class() in disableList: if toggle == -1: toggle = 1.0 if n['disable'].getValue() == 0.0 else 0.0 n['disable'].setValue(toggle) </pre> ====More Subtle==== Creat...")
- 17:06, 11 April 2023 WebGl (hist | edit) [98 bytes] Bernie (talk | contribs) (Created page with "=== Links and shadertoys === * https://blog.amandaghassaei.com/2022/10/25/digital-marbling/")