﻿<?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%3APy%2FScripts</id>
	<title>Dev:Py/Scripts - 版の履歴</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.blender.jp/index.php?action=history&amp;feed=atom&amp;title=Dev%3APy%2FScripts"/>
	<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Py/Scripts&amp;action=history"/>
	<updated>2026-06-02T06:54:02Z</updated>
	<subtitle>このウィキのこのページに関する変更履歴</subtitle>
	<generator>MediaWiki 1.31.0</generator>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=Dev:Py/Scripts&amp;diff=92127&amp;oldid=prev</id>
		<title>Yamyam: 1版 をインポートしました</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Py/Scripts&amp;diff=92127&amp;oldid=prev"/>
		<updated>2018-06-28T18:44:40Z</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日 (木) 18:44時点における版&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:Py/Scripts&amp;diff=92126&amp;oldid=prev</id>
		<title>2016年11月4日 (金) 16:43にwiki&gt;Gaia.claryによる</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Py/Scripts&amp;diff=92126&amp;oldid=prev"/>
		<updated>2016-11-04T16:43:35Z</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;= Add-ons Development =&lt;br /&gt;
&lt;br /&gt;
{{Note|To Do| Parts of this document or documents to which it links may be outdated. Please do not hesitate to either fix the documents right away or propose a fix in the discussion section}}&lt;br /&gt;
&lt;br /&gt;
== How to develop add-ons ==&lt;br /&gt;
&lt;br /&gt;
* Check out the Addon examples (see bottom of this page)&lt;br /&gt;
* [[Dev:2.5/Py/Scripts/Guidelines/Addons|Coding Guidelines]] (For beginners).&lt;br /&gt;
* [[Dev:Py/Sharing|Add-ons Submission Guidelines]] (for Contributors).&lt;br /&gt;
* [[Dev:2.5/Py/Scripts/Cookbook|Add-ons Cookbook]] (for howto do things).&lt;br /&gt;
* [[Dev:2.5/Py/Scripts/Cookbook/Code_snippets | Code Snippets]] (easy to follow, good for self teaching the basics of add-on development).&lt;br /&gt;
&lt;br /&gt;
== API ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.blender.org/documentation/blender_python_api_{{Blender/Version/Current|use=apiurl}}_release/info_quickstart.html API Introduction] by [[User:ideasman42|Campbell]] (with examples)&lt;br /&gt;
* [http://www.blender.org/documentation/blender_python_api_{{Blender/Version/Current|use=apiurl}}_release/info_overview.html API Overview] by [[User:ideasman42|Campbell]] (background information about how the API fits in)&lt;br /&gt;
* [[Dev:2.5/Py/API/Dynamic_Creation_of_Operators|Dynamic creation of operators]]&lt;br /&gt;
* [https://www.blender.org/api/blender_python_api_current/ '''API Reference''' for latest official release]&lt;br /&gt;
* [https://www.blender.org/api/blender_python_api_master/ '''API Reference''' for master (development version)]&lt;br /&gt;
* [[Extensions:2.6/Py/API_Changes|Blender Python API changes]] if you need to update your add-on&lt;br /&gt;
&lt;br /&gt;
== How to Learn Python ==&lt;br /&gt;
&lt;br /&gt;
*[[User:Kilon/Python_book_of_magic | Python Book of Magic ]] for Blender users with no programming experience. &lt;br /&gt;
*[http://docs.python.org/py3k/tutorial/ Official Python Tutorial] for experienced developers and curious people who want to learn more.&lt;br /&gt;
*[http://docs.quantifiedcode.com/python-anti-patterns/ The little Book of Python Anti-Patterns] for everybody.&lt;br /&gt;
&lt;br /&gt;
== Can i distribute my add-on with Blender? ==&lt;br /&gt;
&lt;br /&gt;
Yes, you can! The [[Dev:Py/Sharing|add-ons submission guidelines]] explain the workflow in detail. At the end of this process you become a full responsible Blender add-on developer. Sorry we have no badges for that ... yet :)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Add-ons examples ==&lt;br /&gt;
&lt;br /&gt;
You can find hundreds of Blender Add-Ons on the internet. But we recommend to first look at the official resources:&lt;br /&gt;
&lt;br /&gt;
==== Python Templates (in Blender) ====&lt;br /&gt;
&lt;br /&gt;
When you open the Text editor in Blender then you find a set of ready made python scripts which can be used as starting point for your own creation.&lt;br /&gt;
&lt;br /&gt;
==== Add-on Online Repository ====&lt;br /&gt;
&lt;br /&gt;
The [https://developer.blender.org/diffusion/BA/ Add-on Source repository] is your source for inspiration and how to do your scripting ''in the Blender way''. Please feel free to examine the existing Add-ons and get inspired. And yes, it is welcome to take ideas from there into your own work.&lt;br /&gt;
&lt;br /&gt;
==== Addon Folders in Blender Distributions ====&lt;br /&gt;
&lt;br /&gt;
Below is a list of the Add-on folders found in your Blender distribution. It is located relative to your Blender installation folder, within the subfolder &amp;lt;code&amp;gt;blender/scripts&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
 addons/&lt;br /&gt;
 addons_contrib/&lt;br /&gt;
 freestyle/&lt;br /&gt;
 modules/&lt;br /&gt;
 presets/&lt;br /&gt;
 startup/&lt;br /&gt;
 templates_osl/&lt;br /&gt;
 templates_py/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;'''addons'''&lt;br /&gt;
:Contains official add-Ons (Some disbled by default). These might need to be enabled in the Preferences panel.&lt;br /&gt;
;'''addons_contrib'''&lt;br /&gt;
:Contains contributed add-Ons (all disabled by default). These can be enabled in the Preferences panel.&lt;br /&gt;
;'''freestyle'''&lt;br /&gt;
:&amp;lt;span style='color:red'&amp;gt;to be documented&amp;lt;/span&amp;gt;&lt;br /&gt;
;'''modules'''&lt;br /&gt;
:Python script modules.&lt;br /&gt;
;'''presets'''&lt;br /&gt;
:Python Presets for Blender, cloth, render, sss &amp;amp; sunsky so far!&lt;br /&gt;
;'''startup'''&lt;br /&gt;
:Scripts registered at Blender startup.&lt;br /&gt;
:Sub-folders:&lt;br /&gt;
:* '''bl_operators:''' Blender operators modules.&lt;br /&gt;
:* '''bl_ui:''' User interface properties &amp;amp; window properties scripts.&lt;br /&gt;
;'''templates_osl'''&lt;br /&gt;
:OSL Script templates found in the text editor. &lt;br /&gt;
;'''templates_py'''&lt;br /&gt;
:Python Script templates found in the text editor. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Development environments ====&lt;br /&gt;
&lt;br /&gt;
* [http://georgik.sinusgear.com/2011/06/21/writing-python-scripts-for-blender-with-intellij-idea/ Video tutorial: Writing Python scripts for Blender with Intellij IDEA]&lt;br /&gt;
* [http://www.luxrender.net/wiki/LuxBlend25_Debugging_with_eclipse Using Eclipse as an IDE for blender add-ons]&lt;/div&gt;</summary>
		<author><name>wiki&gt;Gaia.clary</name></author>
		
	</entry>
</feed>