Hi, I’m kinda new to blender python (not to python itself)
wanted to know how to make a link box button (like parent buttons which see the whole object manager,or search by name buttons)
from online tutorials I’ve found something like this
…some class
def (self,context):
layout = self.layout
col = layout.column()
col.operator(…) # and so on
now what I want is to know where to get other methods of the column/row interface (online doc seems complicated)
another question:
If i use external modules (like Numpy,to make it work I deleted blender python and relied on system python) , how to make the code run for others?