Creating a canvas Node

MikeMike's Avatar

MikeMike

16 Jul, 2014 10:52 PM

Is it possible to create a Node that uses canvasHeight & canvasWidth? I'm trying to create a background node.

thanks

  1. Support Staff 1 Posted by Frederik De Ble... on 23 Jul, 2014 08:30 AM

    Frederik De Bleser's Avatar

    Yes, it is. We've built in a way to gain access to the rendering context. There, you can access data on the current document (called the NodeLibrary internally).

    So you could create a node with one part called "context" of (custom) type "context". This will take in a NodeContext. Then you can write something like this (in Python):

    def cook(context):
        library = context.nodeLibrary
        width = float(library.getProperty("canvasWidth"))
        height = float(library.getProperty("canvasWidth")) 
        # Do whatever you want with width / height
    

    Hope this helps,

    F

Reply to this discussion

Internal reply

Formatting help / Preview (switch to plain text) No formatting (switch to Markdown)

Attaching KB article:

»

Attached Files

You can attach files up to 10MB

If you don't have an account yet, we need to confirm you're human and not a machine trying to post spam.

Keyboard shortcuts

Generic

? Show this help
ESC Blurs the current field

Comment Form

r Focus the comment reply box
^ + ↩ Submit the comment

You can use Command ⌘ instead of Control ^ on Mac

Recent Discussions

10 Sep, 2024 03:41 AM
09 Sep, 2024 02:15 PM
07 Sep, 2024 05:16 AM
05 Sep, 2024 02:21 AM
04 Sep, 2024 05:01 AM

 

03 Sep, 2024 10:07 AM
02 Sep, 2024 05:56 AM
31 Aug, 2024 11:07 PM
27 Aug, 2024 12:08 AM
26 Aug, 2024 01:02 PM
26 Aug, 2024 07:18 AM