﻿<?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=%E5%88%A9%E7%94%A8%E8%80%85%3AAramis_acg%2FFBX2012-FBXImport</id>
	<title>利用者:Aramis acg/FBX2012-FBXImport - 版の履歴</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.blender.jp/index.php?action=history&amp;feed=atom&amp;title=%E5%88%A9%E7%94%A8%E8%80%85%3AAramis_acg%2FFBX2012-FBXImport"/>
	<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85:Aramis_acg/FBX2012-FBXImport&amp;action=history"/>
	<updated>2026-08-01T02:35:54Z</updated>
	<subtitle>このウィキのこのページに関する変更履歴</subtitle>
	<generator>MediaWiki 1.31.0</generator>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85:Aramis_acg/FBX2012-FBXImport&amp;diff=137073&amp;oldid=prev</id>
		<title>Yamyam: 1版 をインポートしました</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85:Aramis_acg/FBX2012-FBXImport&amp;diff=137073&amp;oldid=prev"/>
		<updated>2018-06-28T20:49:43Z</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日 (木) 20:49時点における版&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=%E5%88%A9%E7%94%A8%E8%80%85:Aramis_acg/FBX2012-FBXImport&amp;diff=137072&amp;oldid=prev</id>
		<title>wiki&gt;Aramis acg: /* FBX Importing in Assimp */</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85:Aramis_acg/FBX2012-FBXImport&amp;diff=137072&amp;oldid=prev"/>
		<updated>2012-07-07T01:10:48Z</updated>

		<summary type="html">&lt;p&gt;‎&lt;span dir=&quot;auto&quot;&gt;&lt;span class=&quot;autocomment&quot;&gt;FBX Importing in Assimp&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;= FBX Importing in Assimp =&lt;br /&gt;
&lt;br /&gt;
[[User:Aramis_acg/FBX2012-FBXImport/TODO|Current TODO for FBX import]]&lt;br /&gt;
&lt;br /&gt;
===Basics===&lt;br /&gt;
&lt;br /&gt;
The actual FBX importing is implemented within assimp and follows the structure of the other Assimp importers. The following page in assimp's documentation&lt;br /&gt;
&lt;br /&gt;
http://assimp.sourceforge.net/lib_html/extend.html&lt;br /&gt;
&lt;br /&gt;
describes the process of adding a new importer very well (even though its outdated in some aspects).&lt;br /&gt;
&lt;br /&gt;
===Dealing with multiple FBX file format versions===&lt;br /&gt;
&lt;br /&gt;
The assimp importer will be taylored at reading ASCII fbx files in 2013 file format.&lt;br /&gt;
&lt;br /&gt;
Rationale: 2013 is the newest format at the time of the writing and has thus the most features. Upgrading from lower format versions is easier (and causes less data loss) than downgrading. This way, users can use FBX converter to convert their files to 2013 format and no information will be lost (By the same logic, adding assimp support for older fbx formats should also be relatively easy.)&lt;br /&gt;
&lt;br /&gt;
The FBX importer will check the input format version and decide whether the file can be imported or not.&lt;br /&gt;
&lt;br /&gt;
===Policy for dealing with older fbx versions===&lt;br /&gt;
&lt;br /&gt;
- If older format versions can be read using the same code and with no extra efforts (which should be the case for at least 2012, if not more!), accept them. &lt;br /&gt;
&lt;br /&gt;
- Offer a 'strict mode' import flag. If set, do not accept older FBX files and hint users to use FBX converter. If the flag is not set, try your best at reading older files.&lt;br /&gt;
&lt;br /&gt;
- '''2011, 2012 and 2013 are almost identical and are definitely all supported.''' 2009 and earlier needs extra fixup code.&lt;br /&gt;
&lt;br /&gt;
===Binary files===&lt;br /&gt;
&lt;br /&gt;
Binary files map one-by-one to their ascii counterparts, it's just an encoding. Whle the initial focus is ASCII, the fbx importer is designed to be easily extended to support binary reading as well.&lt;/div&gt;</summary>
		<author><name>wiki&gt;Aramis acg</name></author>
		
	</entry>
</feed>