﻿<?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%2FRelease_Notes%2F2.74%2FAddons</id>
	<title>Dev:Ref/Release Notes/2.74/Addons - 版の履歴</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.blender.jp/index.php?action=history&amp;feed=atom&amp;title=Dev%3ARef%2FRelease_Notes%2F2.74%2FAddons"/>
	<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Ref/Release_Notes/2.74/Addons&amp;action=history"/>
	<updated>2026-09-08T12:33:37Z</updated>
	<subtitle>このウィキのこのページに関する変更履歴</subtitle>
	<generator>MediaWiki 1.31.0</generator>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=Dev:Ref/Release_Notes/2.74/Addons&amp;diff=149177&amp;oldid=prev</id>
		<title>Yamyam: 1版 をインポートしました</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Ref/Release_Notes/2.74/Addons&amp;diff=149177&amp;oldid=prev"/>
		<updated>2018-06-28T21:12:53Z</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日 (木) 21:12時点における版&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/Release_Notes/2.74/Addons&amp;diff=149176&amp;oldid=prev</id>
		<title>wiki&gt;Ideasman42: /* Python API */</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Ref/Release_Notes/2.74/Addons&amp;diff=149176&amp;oldid=prev"/>
		<updated>2015-03-09T22:36:47Z</updated>

		<summary type="html">&lt;p&gt;‎&lt;span dir=&quot;auto&quot;&gt;&lt;span class=&quot;autocomment&quot;&gt;Python API&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;= Blender 2.74: Add-ons =&lt;br /&gt;
&lt;br /&gt;
==Import Images as Planes==&lt;br /&gt;
* Now support animations (movies) for Cycles as well, also fixed setting len from video ({{GitCommit|rBA468a9845651e}}).&lt;br /&gt;
&lt;br /&gt;
==[http://wiki.blender.org/index.php/Extensions:2.6/Py/Scripts/Render/Auto_Tile_Size Auto Tile Size] (New)==&lt;br /&gt;
Estimate and set the tile size that will render the fastest&lt;br /&gt;
&lt;br /&gt;
==Node Wrangler==&lt;br /&gt;
* Now renamed the file to &amp;lt;code&amp;gt;node_wrangler.py&amp;lt;/code&amp;gt; instead of &amp;lt;code&amp;gt;node_efficiency_tools.py&amp;lt;/code&amp;gt;, so you will have to enable it and save your preferences again.&lt;br /&gt;
* A change in Blender's core ({{GitCommit|rBc792e546991bd}}) now allows Lazy Functions to work when clicking on the contents of the node too (not only on empty space) ([http://i.imgur.com/zlq1zDI.gif old behavior], [http://i.imgur.com/C6ERwh3.gif new behavior])&lt;br /&gt;
&lt;br /&gt;
==POV-Ray Renderer==&lt;br /&gt;
[[File:Addon-POVRay-volumetric_demo.gif|right|Rendered with POV-Ray!]]&lt;br /&gt;
Quite a few new features from POV-Ray where added to the exporter, among which volumetric rendering.&lt;br /&gt;
{{clr}}&lt;br /&gt;
&lt;br /&gt;
==FBX IO==&lt;br /&gt;
* '''IMPORT''' Added support for embedded image files ({{GitCommit|rBA6a090568c38e4fe6}}).&lt;br /&gt;
* '''IMPORT''' Added support for custom normals ({{GitCommit|rBAa00934e26c46}}).&lt;br /&gt;
&lt;br /&gt;
==OBJ IO==&lt;br /&gt;
* '''IMPORT''' Added support for custom normals ({{GitCommit|rBAcfdf95dc8a0eae}}).&lt;br /&gt;
* '''IMPORT''' reworked code, importing big meshes with polygons can be up to six or seven times faster ({{GitCommit|rBAc307a89e281a}}).&lt;br /&gt;
&lt;br /&gt;
==Python API==&lt;br /&gt;
&lt;br /&gt;
* Quaternion now has support for exponential map representation ({{GitCommit|rB9fa628f35be3}}), eg:&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;expmap = Quaternion((1, 0, 0), 1.2).to_exponential_map()&amp;lt;/source&amp;gt;&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
quat = Quaternion((1.2, 0, 0))  # from exponential map vector to quaternion&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* VFont &amp;amp; Sounds pack/unpack rna functions: ({{GitCommit|rBe7c7f574818cbe7e6a940ad303019e07b1a8fdde}})&lt;br /&gt;
* &amp;lt;tt&amp;gt;SpaceText.region_location_from_cursor&amp;lt;/tt&amp;gt; to get the pixel-space (x,y) from the text (line,column) ({{GitCommit|eb150ef337597}})&lt;/div&gt;</summary>
		<author><name>wiki&gt;Ideasman42</name></author>
		
	</entry>
</feed>