﻿<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ja">
	<id>https://wiki.blender.jp/index.php?action=history&amp;feed=atom&amp;title=Dev%3ARef%2FRequests%2FPython</id>
	<title>Dev:Ref/Requests/Python - 版の履歴</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.blender.jp/index.php?action=history&amp;feed=atom&amp;title=Dev%3ARef%2FRequests%2FPython"/>
	<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Ref/Requests/Python&amp;action=history"/>
	<updated>2026-04-19T17:13:28Z</updated>
	<subtitle>このウィキのこのページに関する変更履歴</subtitle>
	<generator>MediaWiki 1.31.0</generator>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=Dev:Ref/Requests/Python&amp;diff=42528&amp;oldid=prev</id>
		<title>Yamyam: 1版 をインポートしました</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Ref/Requests/Python&amp;diff=42528&amp;oldid=prev"/>
		<updated>2018-06-28T17:45:36Z</updated>

		<summary type="html">&lt;p&gt;1版 をインポートしました&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;ja&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;← 古い版&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;2018年6月28日 (木) 17:45時点における版&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;ja&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(相違点なし)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Yamyam</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=Dev:Ref/Requests/Python&amp;diff=42527&amp;oldid=prev</id>
		<title>2012年10月22日 (月) 21:41にwiki&gt;Cloudform511による</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Ref/Requests/Python&amp;diff=42527&amp;oldid=prev"/>
		<updated>2012-10-22T21:41:01Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Embedding a python macrorecorder  ==&lt;br /&gt;
&lt;br /&gt;
I read about the future release 2.5 - promissing. Will it be possible to switch on/off a kind of macro recorder, that records all interactive GUI-Inputs of the artwork designer into it's equivalent pythoncode that does the same thing. Could this feature be incorporated into the roadmap? This automated coderecording would give an excellent way for python developers to get to know what statements/libraries to use for doing a certain job - just by recording the equivalent interactive actions. The recorded scripts could be studied and taken as stups for quickly realising more complex task by programs. I'm sure this would boost pythoncoding in blender into new dimensions. [[User:Ollio|Ollio]] 22:33, 13 April 2009 (UTC) &lt;br /&gt;
&lt;br /&gt;
== Push-Buttons with Iconmap  ==&lt;br /&gt;
&lt;br /&gt;
Up to now Blender.Draw.Button may have a text, but it's not possible to supply a icon-bitmap. The picture below shows the pythonwindow with an bitmap in background and some buttons. This is a bypass due to the present gap, but not ideal GUI-building. Clicking on the bitmap gives no feedback to the user. Visual labelling area of the function and the actual pusharea are not the same. [[Image:IconizedButtons.png|center|Not ideal: Faking an iconized button]] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; In this sample the icons mean &lt;br /&gt;
&lt;br /&gt;
*push: Push 3D-Cursor onto stack &lt;br /&gt;
*pop: Pop3D-Cursor from stack &lt;br /&gt;
*c2s: Snap cursor to the selection &lt;br /&gt;
*s2c: Snap selection to the cursor&lt;br /&gt;
&lt;br /&gt;
As you can see the graphical icons give much better cognitive feedback compared to the acronyms. &lt;br /&gt;
&lt;br /&gt;
It would be quite useful building python-GUIs to provide an icon-feature to the pushbuttons. I think a Iconsize of 48*48 and 64*64 would be fine. Inputformat could be *.ico or *.png. It would be even nicer to be able to switch between textlabel and icon representation in the same button. --[[User:Ollio|Ollio]] 12:28, 24 December 2006 (CET) &lt;br /&gt;
&lt;br /&gt;
== Extending Python Scripts Menu Feature: MultiGroup Entries, Subgroups  ==&lt;br /&gt;
&lt;br /&gt;
Currently BPY system, let us register a script only in one fixed category in the Python Scripts Menu (Animation, Wizards, Misc). But a certain script may be useful, and thus callable in different categories. A script supporting mesh construction for example may be functional in objectmode and in editmode. Think of a Copy/Paste-Script that may illustrate that. It could works in both editmode or objectmode, of course with modesensitve differentiation of the function. Currently we have to decide wether to register this script in the OBJECT-Scriptmenu or the MESH-Scriptmenu. I circumvented this restriction by publishing the script in MESH-Scriptmenu and then building a wrapper-modul that calls the same script in OBJECT-Scriptmenu. It would be much more elegant to allow something like: &lt;br /&gt;
&lt;br /&gt;
 Name: 'Copy/Paste'&lt;br /&gt;
 Blender: 242&lt;br /&gt;
 Group: 'Mesh, Object'&lt;br /&gt;
&lt;br /&gt;
With growing number of scripts in either Scriptmenu-group it whould also be usefull to support Subgroups. A subgroup Editing could be defined implicit like: &lt;br /&gt;
&lt;br /&gt;
 Name: 'Copy/Paste'&lt;br /&gt;
 Blender: 242&lt;br /&gt;
 Group: 'Editing\Mesh, Editing\Object'&lt;br /&gt;
&lt;br /&gt;
-- [[User:Ollio|Ollio]] 11:35, 24 December 2006 (CET) &lt;br /&gt;
&lt;br /&gt;
== PythonArchitecture  ==&lt;br /&gt;
&lt;br /&gt;
update: the things that seem to not be linked from anymore (the PythonArchitecture node and ones from it) have more recently been worked on at [[Dev:2.4/Source/Python/PythonBlender|BlenderDev/PythonBlender]] &lt;br /&gt;
&lt;br /&gt;
The integration of Python into / with Blender needs thinking. This is not really a feature request, but not a thing that is currently worked on implementationwise either, but perhaps something that becomes architectural feature requests. &lt;br /&gt;
&lt;br /&gt;
-- Blenderwiki.ToniAlatalo &lt;br /&gt;
&lt;br /&gt;
== Personal Python Scripts Menu Entry  ==&lt;br /&gt;
&lt;br /&gt;
Currently BPY system, let us register a script into a fixed category in the Python Scripts Menu (Animation, Wizards, Misc). It would be nice to have a way to define our own category to manage our personal (buggy) python scripts. &lt;br /&gt;
&lt;br /&gt;
-- Blenderwiki.malefico - 05 Oct 2004 &lt;br /&gt;
&lt;br /&gt;
-- [[DeveloperWiki/JosephGilbert|JosephGilbert]] - 21 Mar 2005 &lt;br /&gt;
&lt;br /&gt;
== Output for Debuging  ==&lt;br /&gt;
&lt;br /&gt;
On Windows OS I have to switch the whole time between this 2 windows of Blender to see the print output. It would be cool to see the output in a frame of Blender. -- Blenderwiki.Thomas Buschhardt &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== Parenting Objects to vertices/faces/edges thru Python  ==&lt;br /&gt;
&lt;br /&gt;
Python API lacks of a method to parent an object or list of objects to a face or group of faces, or even to a single vertex. Currently all you can do is to parent to an object. This kind of functionality is really useful for scripting of animatable feathers or any other application which uses &amp;quot;particle-like&amp;quot; objects over the faces of a deformable mesh. &lt;br /&gt;
&lt;br /&gt;
-- Blenderwiki.malefico - 03 Jun &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== Constraint module for constraints creation/access thru Python  ==&lt;br /&gt;
&lt;br /&gt;
Might allow scripting of walkcycles using constraints to lock character feet, auto IK setup creation, constraint management wizards, and more... &lt;br /&gt;
&lt;br /&gt;
-- Blenderwiki.malefico - 13 Jun 2005 &lt;br /&gt;
&lt;br /&gt;
== Full access to Texture/MapInput and MapTo-Values  ==&lt;br /&gt;
&lt;br /&gt;
What makes sens to tell Blender thru Python take MapTo('Nor') if you cant change the Normal-amount. It would be also nice to change not only to MapTo('Nor') also to negative 'Nor'. -- [[DeveloperWiki/ThomasBuschhardt|ThomasBuschhardt]] - 23 Aug 2005 &lt;br /&gt;
&lt;br /&gt;
== Garbage Collector  ==&lt;br /&gt;
&lt;br /&gt;
Its an old problem, but not solved. We need a garbage collector to delete unused Materials and so on. The trick to save and open the same Blender-file is not a solution. Free the memory&amp;amp;nbsp;:)!! -- [[DeveloperWiki/ThomasBuschhardt|ThomasBuschhardt]] - 02 Oct 2005 &lt;br /&gt;
&lt;br /&gt;
== Python based Modifiers  ==&lt;br /&gt;
&lt;br /&gt;
Python based modyfiers would be great. This should make it possible to implement scripts like [http://elysiun.com/forum/viewtopic.php?t=38458 TerryNoise] mare easy an make it not persitance to the mesh and maybe also animateable!&amp;lt;br&amp;gt; -- [[User:Panzi|Panzi]] 01:50, 12 November 2005 (CET) &lt;br /&gt;
&lt;br /&gt;
== Better Python-Script UI API  ==&lt;br /&gt;
&lt;br /&gt;
The python script UI API is IMHO very unhandy. I tryed to work around this by creating [http://elysiun.com/forum/viewtopic.php?t=46231 ScriptUI], but a nativ solution (with clipped container widgets and scrollbars etc.) would be '''much''' better.&amp;lt;br&amp;gt; -- [[User:Panzi|Panzi]] 01:50, 12 November 2005 (CET) &lt;br /&gt;
&lt;br /&gt;
== Python Numeric Input  ==&lt;br /&gt;
&lt;br /&gt;
*When inputting numbers, be able to do _ + NUMBER to apply that operation to the original number; similar to the read-eval-print loop of the python interpreter. &lt;br /&gt;
*Be able to pass python expressions into the numeric input that would be updated. To do this, you would prepend a '|' to the python expression. The symbols prepending the expression could be used to set when they would be updated, for example, | for every frame change, @ before rendering, &amp;amp;amp; between render frames only and not frame changes in UI, but these are un-intuitive. If this were done, it would be a nice touch to change the button color, and have something in the object browser for tracking these expresions.&lt;br /&gt;
&lt;br /&gt;
--[[User:Purpleposeidon|Purpleposeidon]] 19:05, 22 March 2008 (CET) &lt;br /&gt;
&lt;br /&gt;
== User Input Handlers == &lt;br /&gt;
Problem: bpy.app.handlers.scene_update_pre is the only way to clean up addon objects. This significantly impacts frame rate.&lt;br /&gt;
Solution: bpy.app.handlers should have pre and post handlers to deal with all events surrounding a user action.  Could be titled user_input_pre and user_input_post.  The idea is that these handlers would be executed before and after everything which can be &amp;quot;undone.&amp;quot;&lt;br /&gt;
[[Category:Python]] [[Category:Feature_requests]]&lt;/div&gt;</summary>
		<author><name>wiki&gt;Cloudform511</name></author>
		
	</entry>
</feed>