관리 메뉴

fatalite

FBX Format 본문

게임/컴퓨터 그래픽스

FBX Format

fataliteforu 2023. 1. 3. 13:13

FBX, File Box는 Autodesk에서 사용하는, 3D Tool들

FBX는 ASCII와 이진(Binary)파일 형식으로 만들 수 있다.

 

FBX의 포맷과 스펙은 공식적으로 공개되지 않았고,
Autodesk에서 제공하는 C++ FBX SDK를 이용해서 FBX 파일을 다룰 수 있다.

 

Text-Based File Structure

트리 구조로 되어있다.

 

A NodeType Identifier (class name)

 

A tuple of properties associated with it, the tuple elements are the usual primitive data types: 
float, integer, string.. etc.

A list which contains nodes in the smae format(recursively)

 

NodeType: SomeProperty0a, SomeProperty0b, ... , {

 NestedNodeType1 : SomeProperty1a, ...
 NestedNodeType2 : SomeProperty2a, ... , {
 ... Sub-scope
 }

 ...
}

References : https://docs.fileformat.com/3d/fbx/

'게임 > 컴퓨터 그래픽스' 카테고리의 다른 글

스켈레톤 - 애니메이션  (0) 2023.08.17
OBJ to FBX Converting  (0) 2023.01.03