Skip to content

Commit 9f03597

Browse files
committed
update documentation
1 parent a9a8066 commit 9f03597

File tree

3 files changed

+27
-7
lines changed

3 files changed

+27
-7
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@
3737
*.pyc
3838

3939
/.idea
40-
/output
40+
/output

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
# DNA Calibration
2-
DNA Calibration is a set of tools used for working with MetaHuman DNA files, bundled into a single package.
1+
# MetaHuman DNA Calibration
2+
MetaHuman DNA Calibration is a set of tools used for working with MetaHuman DNA files, bundled into a single package.
33
DNA is an integral part of [MetaHuman](https://www.unrealengine.com/en-US/metahuman) identity.
44
DNA files are created with [MetaHuman Creator](https://metahuman.unrealengine.com/) and downloaded with
55
[Quixel Bridge](https://docs.metahuman.unrealengine.com/en-US/downloading-metahumans-with-quixel-bridge/).
66

7-
DNA Calibration is a set of tools used for working with MetaHuman DNA files, bundled into a single package. We wanted to share this code to help users customize DNA files so they can better integrate the characters they create into their games and experiences.
8-
DNA Calibration tools are provided in a GitHub repository located at this address.
7+
MetaHuman DNA Calibration is a set of tools used for working with MetaHuman DNA files, bundled into a single package. We wanted to share this code to help users customize DNA files so they can better integrate the characters they create into their games and experiences.
8+
MetaHuman DNA Calibration tools are provided in a GitHub repository located at this address.
99

1010

1111
# Overview
1212
For an explanation about how the repository is organized, [click here](docs/repository_organization.md).
1313

14-
The DNA Calibration repository contains two distinct tools:
14+
The MetaHuman DNA Calibration repository contains two distinct tools:
1515
- [DNACalib](docs/dnacalib.md) (and its dependencies)
1616
- [DNAViewer](docs/dna_viewer.md)
1717

@@ -81,4 +81,4 @@ eg. `c:/dna_calibration` in Windows or `/home/user/dna_calibration` in Linux. Im
8181
See the [FAQ guide](docs/faq.md) for additional specifications.
8282

8383
# License
84-
DNACalibration is released with [licence](LICENSE).
84+
MetaHuman DNA Calibration is released with [licence](LICENSE).

docs/faq.md

+20
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# Frequently Asked Questions (FAQ)
22

3+
## Fix "RuntimeError: Error loading DNA: DNA signature mismatched, expected DNA, got ver?"
4+
5+
DNA files are stored as [LFS](https://git-lfs.github.com/) files (Here is [another explanaintion](https://www.atlassian.com/git/tutorials/git-lfs) what LFS is).
6+
This problem occurs when repo is downloaded as zip, and github then does not download LFS files as whole file, but as some metadata file.
7+
Open that Ada.dna file in some editor file, from location were MetaHuman DNA Calibration is downloaded and then in
8+
`data/dna/Ada.dna` (eg `c:/MetaHuman-DNA-Calibration/data/dna/Ada.dna` you will got this:
9+
10+
```
11+
version https://git-lfs.github.com/spec/v1
12+
oid sha256:e764cfab938283231bcb3e5af1c7bcbec5154bab4804aafa1b5b7dc6e400ca5e
13+
size 73730354
14+
```
15+
Which is not valid DNA file.
16+
17+
There is two ways to fix this issue:
18+
- `git clone git clone https://github.com/EpicGames/MetaHuman-DNA-Calibration.git`
19+
- manually download [Ada.dna](../data/dna/Ada.dna) and/or [Taro.dna](../data/dna/Taro.dna), and put them in data directory
20+
where you downloaded MetaHuman DNA Calibration. eg. `c:/MetaHuman-DNA-Calibration/data/dna`
21+
22+
323
## How do I distribute a Maya scene?
424

525
Your scene should work out of the box if you include the following in the distribution:

0 commit comments

Comments
 (0)