- Change 1
Since blender 3.3, the module folder of the console has been moved.
from
from console import intellisense
to
try:
from console import intellisense
except ModuleNotFoundError:
from bl_console_utils.autocomplete import intellisense
- Change 2(send Console)
Variables were supported in early versions.
It is not perfect, but as an emergency
“CTRL + SHIFT + ENTER” will send the specified line to the console.
the specified line to the console.
I have created a modified version.
You can use it if you like.
How to use?(GIF ANIMATION)
Use Bpy module
use Send console
How to use other module
Use python code






