File: print_selected_objects.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 (14 lines) | stat: -rw-r--r-- 414 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#python

import k3d

k3d.log.debug("***** Selected Nodes *****")

selection_nodes = k3d.node.lookup(context.document, "ngui:unique_node", "node_selection")
if len(selection_nodes):
	for node in selection_nodes[0].selected_nodes():
		k3d.log.debug(node.name)
k3d.log.debug("**************************")

k3d.ui().message("Output sent to the K-3D log ... check your console output, or use Help > Open Log Window.")