File: render_engine_script.py

package info (click to toggle)
k3d 0.8.0.2-6
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 40,692 kB
  • ctags: 39,695
  • sloc: cpp: 171,303; ansic: 24,129; xml: 6,995; python: 5,796; makefile: 726; sh: 22
file content (29 lines) | stat: -rw-r--r-- 937 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#python
# Sample RenderEngineScript input
#
# Use the following context variables for rendering:
#
# "context.document" - a reference to the owning document.
# "context.node" - a reference to the owning node.
# "context.visible_nodes" - the collection of nodes that should be
#                           rendered, if possible.
# "context.output_image" - path to the user-selected output file.
# "context.view_image" - boolean indicating whether the output should
#                        be displayed after rendering is complete.

# This trivial example "renders" the document by writing
# the name of each visible node to a text file.  The set of
# visible nodes is chosen by the user at runtime via the
# "Visible Nodes" property.

import k3d

k3d.check_node_environment(locals(), "RenderEngineScript")

output = open(str(context.output_image), "w")

for node in context.visible_nodes:
	output.write(node.name + "\n")

output.close()