Jump to: Board index » General » Fusion

Couple of Fusion questions

Learn about 3D compositing, animation, broadcast design and VFX workflows.
  • Author
  • Message
Offline

Abdelrahman Magdy

  • Posts: 291
  • Joined: Fri Jan 23, 2015 10:08 pm

Couple of Fusion questions

PostWed Mar 15, 2017 6:28 pm

Hi,

I have a couple of questions about Fusion:

1) Is there a shortcut to make any view in Fusion go full screen? I have looked in the Hotkey Manager and online, and I can't seem to find a way to do it.

2) Speaking of the Hotkey Manager, there is something that I would like to be assigned a shortcut, but I can't find it in the hotkeys. When you select a couple of nodes and right click, you can choose to align them to the grid (it's called 'Line Up to Grid'). Is there a way to assign a shortcut to this command, so I can just use it whenever I need to align any group of tools for organizational purposes. (I know I can activate the Arrange to Grid option in the Flow preferences, but I have been using this option, and it just annoys me when I am moving the nodes around. I prefer it when I can move the nodes freely. After all, this is the FLOW view ;) :D.

3) In Fusion 7, there was actually a better way to align tools horizontally or vertically, but they are lost in this version. Is there anyway to get them back. I cannot remember if they were scripts or just options in Fusion.

4) Last, is there a way in Fusion to replicate the trick mentioned in this Nuke tutorial:
http://www.youtube.com/watch?v=feANAsdahRk&t

I work with lots of image planes in 3D, and I would for them to scale up or down when I am moving them on the Z Axis, so they will always fit the camera.

Thank you guys.
System specs:
Resolve Studio version: 16.1.0.055
Fusion Studio version: 9.0.2
OS: CentOS 7
CPU: Intel i7-4790k 4GHz Quad-Core
RAM: 32GB
GPU: NVIDIA GeForce 1080 Ti 11GB
Offline
User avatar

michael vorberg

  • Posts: 943
  • Joined: Wed Nov 12, 2014 8:47 pm
  • Location: stuttgart, germany

Re: Couple of Fusion questions

PostWed Mar 15, 2017 8:58 pm

1) "F4" maximizes the view your mouse is currently over

3) if you used a script for that there is a high chance it can be converted for fu8, might help if you still have Fu7 around and can take a look

4)
put it image directly into a cameras "image input", now in the camera the Tab "image" should have "enable image plane" active. with the "depth" slider you can define the position of the plane in space
now the image plane always fits into the cameras Fov
Offline

Sander de Regt

  • Posts: 3591
  • Joined: Thu Nov 13, 2014 10:09 pm

Re: Couple of Fusion questions

PostWed Mar 15, 2017 9:09 pm

3) can still be found in the right-click menu of the Flow view. It's in 'options' -> build flow horizontally/build flow vertically
Sander de Regt

ShadowMaker SdR
The Netherlands
Offline

Abdelrahman Magdy

  • Posts: 291
  • Joined: Fri Jan 23, 2015 10:08 pm

Re: Couple of Fusion questions

PostWed Mar 15, 2017 10:01 pm

Thank you for your replys guys. The F4 does the trick Michael, and the method you suggested for question number 4 works like a charm. Regarding question number 3, unfortunately I don't have Fu7 anymore, and I am not even 100% sure if it was a script or function in the program.

Thank you Sander for your suggestion, but this is not what I am actually looking for. I know about the build direction thing. What I am trying to find is a way to align two or more nodes together, not how the whole node tree flows.
System specs:
Resolve Studio version: 16.1.0.055
Fusion Studio version: 9.0.2
OS: CentOS 7
CPU: Intel i7-4790k 4GHz Quad-Core
RAM: 32GB
GPU: NVIDIA GeForce 1080 Ti 11GB
Offline

Sander de Regt

  • Posts: 3591
  • Joined: Thu Nov 13, 2014 10:09 pm

Re: Couple of Fusion questions

PostWed Mar 15, 2017 10:12 pm

I found the scripts you're looking for.
Save these in your tool script folder with a *.lua extension and see if they still work. I can't script to save my life, so this is the best I can do for you.

Code: Select all
------------------------------------------------------------------------------
-- Align Tools Horizontally
--
-- tool script
--
-- This script will align the selected tools so they share the same position
-- on the Y axis as the tool that executed the script.
--
-- written by : eyeon Software (sdk@eyeonline.com)
-- written    : May. 12th, 2008

------------------------------------------------------------------------------

local flow = comp.CurrentFrame.FlowView -- get current flowview

local x, y = flow:GetPos(tool) -- get current tools position

comp:StartUndo("Align tools horizontally")

for i, t in pairs(comp:GetToolList(true)) do -- for every selected tool
   cur_x, cur_y = flow:GetPos(t) -- get tools position
   
   flow:SetPos(t, cur_x, y) -- set the new position
end

flow:Refresh()
comp:EndUndo(true)



and here's the other one

Code: Select all
------------------------------------------------------------------------------
-- Align Tools Vertically
--
-- tool script
--
-- This script will align the selected tools so they share the same position
-- on the X axis as the tool that executed the script.
--
-- written by : eyeon Software (sdk@eyeonline.com)
-- written    : May. 12th, 2008

------------------------------------------------------------------------------

local flow = comp.CurrentFrame.FlowView -- get current flowview

local x, y = flow:GetPos(tool) -- get current tools position

comp:StartUndo("Align tools vertically")

for i, t in pairs(comp:GetToolList(true)) do -- for every selected tool
   cur_x, cur_y = flow:GetPos(t) -- get tools position
   
   flow:SetPos(t, x, cur_y) -- set the new position
end

flow:Refresh()
comp:EndUndo(true)

Sander de Regt

ShadowMaker SdR
The Netherlands
Offline

Abdelrahman Magdy

  • Posts: 291
  • Joined: Fri Jan 23, 2015 10:08 pm

Re: Couple of Fusion questions

PostWed Mar 15, 2017 10:34 pm

This is brilliant, Sander. They both still work.

Thank you very much
System specs:
Resolve Studio version: 16.1.0.055
Fusion Studio version: 9.0.2
OS: CentOS 7
CPU: Intel i7-4790k 4GHz Quad-Core
RAM: 32GB
GPU: NVIDIA GeForce 1080 Ti 11GB

Return to Fusion

Who is online

Users browsing this forum: No registered users and 29 guests