Blender doesn't have quite as good scripting documentation as Modo and the API gets broken much more frequently but it has got a few things going for it that make it pretty easy to script. The API documentation is available here, so go ahead and take a look. One thing that you'll be using in the process of scripting…
I downloaded Blender 2.8 yesterday and was looking into adding my own scripts to custom keyboard hotkeys, but there are gaps in my understanding that the Blender documentation isn't explaining well enough to a dumbass like me. For starters, all the scripts I've been finding that should be printing stuff somewhere aren't…
@derphouse Ah that's cool! The menu is just my own, using it for personal tools/testing. The scripts are all separate so you can just add them individually and assign them to hotkeys or wherever you want. Personally I prefer it this way so you can set things to your own preference. I prefer smaller individual scripts to…
I'm here for some information about this model format,its extension is YOBJ.I'm providing a sample model file and textures below. http://www.datafilehost.com/d/7638c65f also here is a blender script which opens the model in blender 2.49 https://mega.co.nz/#!1llHUb5a!14iCHUtlmFL_aPvICWaeoYXcRNffzfFuFzagDCTwriE Unfortunately…
Thanks for the tips on sharp edges. I am now trying to write a script to get the perimeter edges of a face selection and then turn those into sharp edges. Executing the lines individually through the script editor seems to work alright, but for some reason when I put them into a custom operator, they dont give the same…
I threw something together that works but has its own inconveniences. import bpy # Define your desired workspace here
UV_WORKSPACE_ID = "UV Editing" bpy.ops.wm.window_new_main()
bpy.context.window_manager.windows[-1].workspace = bpy.data.workspaces[UV_WORKSPACE_ID] This will open a new main window and change it to the…
No, Looptools is a different script :) The BSurfaces GPL edition is a more immature version of the commercial script above and it comes with Blender :) You can eatch videos on it HERE (the name of the script changed to BSurfaces at some point)
Just found this kickass little site with short text tutorials, which I personally prefer over going through videos: https://twominutetuts.com It's great! Let's share it with the people who're getting into Blender. You can open the Text Editor and under Templates -> Python -> Operator Modal you get a simple template of a…
Frankie: yes you can. First, take this Python script and save it in Blender/(version number)/scripts/addons folder as object_toggle_wireframe_on_shaded_on_all.py. import bpybl_info = { "name": "Quick Wireframe on Shaded", "category": "Object" }def main(context): do_i_show_wire = not context.active_object.show_wire for ob…
I made a script called fastloop which does something similar to this. It allows you to loopcut and slide just by left clicking and moving the mouse. To exit the script you need to press Esc x2 http://metalliandy.com/html/extra_scripts.html http://www.metalliandy.com/downloads/scripts/fastloop_016.py It works with BMesh :)