About 10,400 results
Open links in new tab
  1. Can you clear the System Console without restarting Blender?

    Aug 8, 2020 · The question is simple enough, but I can't find the answer. Is there an operator or something similar that clears the Blender System Console history? I would also be willing to …

  2. python - Clear console and info panes with scripting - Blender …

    Jul 20, 2022 · I'm trying to write a simple script that will clear the Info Editor and the Python Console. As seen in the areas marked by green and orange rectangles receptively. It's straight …

  3. python - How to clear the command history in the console?

    It is possible to clear the command history in the console-editor? I tried the following code, but it crashes blender. import bpy for window in bpy.context.window_manager.windows: screen = w...

  4. How can I display the output that appears in the System Console …

    Apr 23, 2017 · 13 I have a button created by my script, and I want to display the output that normally appears in the system console inside Blender's Python Console. Something similar …

  5. Reset blender environment on each script run

    I wrote an add-on (totally work in progress..but whatever) which gives the python console in Blender a second function. Hitting Enter, executes normal python stuff, but I can type …

  6. Why doesn't the Blender console go away when opening the …

    Nov 17, 2022 · Thanks, solved! I use the new Windows Terminal, and this setting can also be changed in-app: Settings -> Startup -> Default terminal application -> Windows Console Host …

  7. python - Launch System Console, Blender 3.0 - Blender Stack …

    I'm running a script that displays info in the console. I don't want the end-user to have to launch Blender from the command line. Best would be if I can launch the console from the script itself. …

  8. python - Where does console output go - Blender Stack Exchange

    I'm trying to debug a Python script by placing a print ("foo=" + foo) statement in my code. But where does the output appear? It doesn't appear on the Python Console, and it doesn't appear …

  9. How to view python error messages? - Blender Stack Exchange

    Feb 14, 2016 · On Windows the console window opens separately when Blender launches. On OSX and Linux, you need to launch the blender.app file from the Terminal to have access to …

  10. python - How can I delete keyframes and animation data for all …

    Mar 21, 2021 · One fell swoop approach. copying the script from Delete animation of object Uses Object.animation_data_clear() to remove all animation data from all selected objects. import …