Python Pythonコードを実行するノードの作成 ボタンを押した時だけ実行されるノードを作成する。 Nullノードを置き、Edit Parameter Interfaceのウインドウを出す。 Stringを配置し、プロパティのTypeをStringにし、LanguageをPythonにする... 2020.06.05 Python
Python Pythonでのリスト操作 リストAからリストBを削除する ラムダ式を使っている。 listA = listB = listA = list(filter(lambda x:x not in listB, listA)) print(listA) # リストAとリスト... 2020.05.27 Python
Python Python SOPのアトリビュート参照と編集 ジオメトリ input1に差したジオメトリを参照する場合 inputs = node.inputs() geo1 = inputs.geometry() # Cdを取得 list_color = geo1.pointFloatAttribV... 2020.05.24 Python
Python Subnetのボタンから内部ノードのボタンを実行する subnetにボタンを作成して内部のROP Geometry OutputノードのSave to Diskボタンを押す方法。 Save to Diskのパラメータはexecuteなのを確認。 SubnetのUIにボタンを配置して、Callb... 2020.05.23 Python
Python ビューポートのスクリーンショットを撮る スクリーンショットを撮るシェルフツールのスクリプト from time import gmtime, strftime, localtime import os.path import re import subprocess # ビューポ... 2019.01.04 Python
Python カレントフォルダを開く 現在開いているファイルのフォルダを開くシェルフツールのスクリプト。 シェルフ上で右クリックしてNew Tool…を選択してウインドウが開いたらOptionsに名前やラベルを入力する。 Scriptタブを押し、コードを入力する。 import... 2019.01.03 Python