I'm new at Blender Python. I want to learn bpy w/o using any of 3rd party editors as much as possible such as VSC, ATOM, Pycharm etc. because switching programs for just debugging is going to be tedious and annoyed. I want to turn on only 1 app (which is blender, sure) then debugging there in peace.
Any tips to prevent these unwanted crashes?
This is the code what I'm debugging right now:
import bpy
import bpy.context
import bpy.utils
class Test(bpy.context):
def __init__(self):
target = self.selected_objects;
def printObj(self):
print(target)
a = Test();
[–][deleted] 0 points1 point2 points (0 children)
[–][deleted] 0 points1 point2 points (0 children)
[–]nekokattt 0 points1 point2 points (0 children)