Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- FBX
- 민겸수
- objtofbx
- 5639
- 의미와 무의미의 경계에서
- Linux
- UActor
- Unreal
- C++
- oracle
- 백준 1253번
- OS
- 오손데이터읽기
- 언리얼 커스텀 플러그인
- 백준
- UnrealMP
- 1253번
- 트랜잭션 관리
- 실습
- 2단계로킹
- 1967번
- 비재귀셰그먼트
- Security
- 데이터베이스 배움터
- 언리얼 플러그인
- hackerank
- SQL
- 셰그먼트트리
- command not found
- 1759번
Archives
- Today
- Total
fatalite
FBX Format 본문
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 |