About 85,800 results
Open links in new tab
  1. How the Blender 3D 2.8x Graphical User Interface is Made?

    Jun 22, 2020 · CLI is also a user interface. It just uses command line, and not pretty graphics. Both CLI and GUI communicate with "backend" that actually does stuff. Since Blender is …

  2. python - How to create a custom UI? - Blender Stack Exchange

    Jul 6, 2016 · Panels are everywhere in Blender so it's the most basic element of the user interface. Where the panel is going to be used is defined by bl_space_type. Blenders interface …

  3. interface - How to find the Python equivalent operation for tools ...

    When you press a button or change a setting, this is an operation which you can also do in Python, how do you find the Python equivalent to accessing these user interface elements. …

  4. Python Command to change from English to other language

    Oct 7, 2022 · To set user interface language from Python you should use import bpy bpy.context.preferences.view.language = 'zh_CN' Link to the API docs

  5. python - Custom Blender Addon: How to make an input prompt?

    Nov 20, 2024 · How can I pop up an input prompt in my blender addon that asks the user to enter a text that is then used as a variable? Basically what you would only do with Python:

  6. python - generate an event or function callback when a …

    generate an event or function callback when a stringproperty is changed via user interface Ask Question Asked 10 years, 3 months ago Modified 10 years, 3 months ago

  7. python - How to reset all properties to their default values in a ...

    Feb 3, 2017 · How to reset all properties to their default values in a custom made User Interface Panel Ask Question Asked 8 years, 10 months ago Modified 8 years, 10 months ago

  8. interface - Custom user path? - Blender Stack Exchange

    Nov 3, 2023 · In RECENT (ie: 3.5+) versions of Blender there is supposedly an officially supported way to change your user path through the Blender interface, not by installing a …

  9. python - NodeTree missing input attribute - Blender Stack Exchange

    Apr 25, 2024 · Explore related questions python cycles-render-engine See similar questions with these tags.

  10. scripting - How can I use blender's python API from a Ipython …

    Mar 28, 2020 · 4 I would like to have a python notebook running on my localhost:8000 that i can execute bpy scripts with... and see the resulting change in my other monitor which is running …