﻿<?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=%E3%83%86%E3%83%B3%E3%83%97%E3%83%AC%E3%83%BC%E3%83%88%3ARelease_Notes%2F2.46%2FMesh%2FEditing</id>
	<title>テンプレート:Release Notes/2.46/Mesh/Editing - 版の履歴</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.blender.jp/index.php?action=history&amp;feed=atom&amp;title=%E3%83%86%E3%83%B3%E3%83%97%E3%83%AC%E3%83%BC%E3%83%88%3ARelease_Notes%2F2.46%2FMesh%2FEditing"/>
	<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=%E3%83%86%E3%83%B3%E3%83%97%E3%83%AC%E3%83%BC%E3%83%88:Release_Notes/2.46/Mesh/Editing&amp;action=history"/>
	<updated>2026-08-09T04:41:43Z</updated>
	<subtitle>このウィキのこのページに関する変更履歴</subtitle>
	<generator>MediaWiki 1.31.0</generator>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=%E3%83%86%E3%83%B3%E3%83%97%E3%83%AC%E3%83%BC%E3%83%88:Release_Notes/2.46/Mesh/Editing&amp;diff=58010&amp;oldid=prev</id>
		<title>Yamyam: 1版 をインポートしました</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=%E3%83%86%E3%83%B3%E3%83%97%E3%83%AC%E3%83%BC%E3%83%88:Release_Notes/2.46/Mesh/Editing&amp;diff=58010&amp;oldid=prev"/>
		<updated>2018-06-28T17:53:35Z</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:53時点における版&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=%E3%83%86%E3%83%B3%E3%83%97%E3%83%AC%E3%83%BC%E3%83%88:Release_Notes/2.46/Mesh/Editing&amp;diff=58009&amp;oldid=prev</id>
		<title>wiki&gt;Mindrones: Dev:Ref/Release Notes/2.46/Mesh/Editing moved to Template:Release Notes/2.46/Mesh/Editing: move to Template:</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=%E3%83%86%E3%83%B3%E3%83%97%E3%83%AC%E3%83%BC%E3%83%88:Release_Notes/2.46/Mesh/Editing&amp;diff=58009&amp;oldid=prev"/>
		<updated>2009-02-17T23:49:07Z</updated>

		<summary type="html">&lt;p&gt;&lt;a href=&quot;/Dev:Ref/Release_Notes/2.46/Mesh/Editing&quot; class=&quot;mw-redirect&quot; title=&quot;Dev:Ref/Release Notes/2.46/Mesh/Editing&quot;&gt;Dev:Ref/Release Notes/2.46/Mesh/Editing&lt;/a&gt; moved to &lt;a href=&quot;/%E3%83%86%E3%83%B3%E3%83%97%E3%83%AC%E3%83%BC%E3%83%88:Release_Notes/2.46/Mesh/Editing&quot; title=&quot;テンプレート:Release Notes/2.46/Mesh/Editing&quot;&gt;Template:Release Notes/2.46/Mesh/Editing&lt;/a&gt;: move to Template:&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Briggs&lt;br /&gt;
&lt;br /&gt;
== Custom Properties for Mesh entities ==&lt;br /&gt;
&lt;br /&gt;
In order to give import/export script authors the ability to add properties&lt;br /&gt;
to inidividual faces, vertices and edges in the same manner as they are able&lt;br /&gt;
to do with ID structures three new custom data types have been added to blender&lt;br /&gt;
for floats, integers and strings.&lt;br /&gt;
&lt;br /&gt;
Things to note:&lt;br /&gt;
* Since property Layers are custom data, they are added to all verts, edges or faces at once.&lt;br /&gt;
* Only one property layer for each unique property name may exist. In  other words, you cannot have a float layer as well as an integer layer both with the same name.&lt;br /&gt;
* No user interface for this exists at the moment.&lt;br /&gt;
&lt;br /&gt;
The following methods and attributes have been added to the Blender.Mesh&lt;br /&gt;
Python module and it's object types:&lt;br /&gt;
&lt;br /&gt;
* MVert/Edge/FaceSeq:&lt;br /&gt;
** addPropertyLayer(name, type)&lt;br /&gt;
** removePropertyLayer(name)&lt;br /&gt;
** renamePropertyLayer(original name, new name)&lt;br /&gt;
** properties(readonly list.)&lt;br /&gt;
&lt;br /&gt;
* MVert/Edge/Face&lt;br /&gt;
** getProperty(name)&lt;br /&gt;
** setProperty(name, value)&lt;br /&gt;
&lt;br /&gt;
* Mesh module&lt;br /&gt;
** PropertyTypes (readonly dictionary)&lt;br /&gt;
&lt;br /&gt;
== Updated FLT scripts==&lt;br /&gt;
&lt;br /&gt;
Blender FLT I/O scripts have been updated to have more features.In addition&lt;br /&gt;
several utility scripts/applets have been added to aid in working with FLT &lt;br /&gt;
databases within Blender.&lt;br /&gt;
&lt;br /&gt;
Documentation can be found here:&lt;br /&gt;
&lt;br /&gt;
http://wiki.blender.org/index.php/Scripts/Manual/Import/openflight_flt&lt;br /&gt;
http://wiki.blender.org/index.php/Scripts/Manual/Export/openflight_flt&lt;br /&gt;
http://wiki.blender.org/index.php/Scripts/Manual/FLTools&lt;/div&gt;</summary>
		<author><name>wiki&gt;Mindrones</name></author>
		
	</entry>
</feed>