Node Properties & Property Names ← DaVinci Resolve ← Socratica

Поділитися
Вставка
  • Опубліковано 17 жов 2024

КОМЕНТАРІ • 9

  • @realgouravverma
    @realgouravverma Рік тому +10

    When you hover over any property then at the bottom left side the name complete expression code will be shown. So if node name is "Rect" and the property name is "Centre" then when you hover over the centre property then when you keep hovering on it and then see at the bottom left side of the davinci resolve screen then there is a bar which shows the complete name i.e. "Rect.Centre". Infact while you were showing it all I was also looking there.

    • @socraticafx
      @socraticafx  Рік тому +4

      How did I miss that?? 🤦‍♂Thank you!!

    • @DziadZabol
      @DziadZabol Рік тому +3

      Simplest solusions don't come easy ;)

  • @XSession
    @XSession Рік тому

    🎉 Thanks for doing this video ,it needs to be done ❤❤

  • @AMASWAZI_STUDIOZ
    @AMASWAZI_STUDIOZ Рік тому +1

    I'll be making a big mistake if don't follow you. please keep on doing more videos of fusion we love it. + 1 sub here🙌🙌

  • @Astlaus
    @Astlaus 7 місяців тому +1

    There is no need to save the settings file. Simply select a node, press ctrl+c, then switch to any text editor and paste with ctrl+v -- you'll get the contents of the settings without the need to save anything.

  • @MikeAguilar
    @MikeAguilar Рік тому +1

    Referring to 11:22 call out, this is the Py3 code you need to get all the properties for a specific node using the console. I tested it in Resolve 18.6.
    # Identify the node by its name
    node_name = "YourNodeName" # Replace with the actual node name you want to investigate
    node = comp.FindTool(node_name)
    # Ensure the node exists
    if node is None:
    print(f"No node named {node_name} found")
    else:
    # List and print the node's properties
    props = node.GetAttrs()
    print(f"Properties of node {node_name}:")
    for prop in props:
    print(f" - {prop}")

  • @4Manos
    @4Manos Рік тому

    Bravo!!