Merge pull request #49 from Unity-Technologies/SynthDet_V2_RandomizerBased
Replaced the Unity project with a new version that uses Perception's Randomizers to randomize everything. (SynthDet V2)
This commit is contained in:
Коммит
a85914d111
|
@ -79,5 +79,5 @@ meta] text !filter !merge !diff
|
|||
*.cs text !filter !merge !diff
|
||||
*.meta text !filter !merge !diff
|
||||
*.raw filter=lfs diff=lfs merge=lfs -text
|
||||
*.ipynb filter=lfs diff=lfs merge=lfs -text
|
||||
*.ipynb text !filter !merge !diff
|
||||
*.estimator filter=lfs diff=lfs merge=lfs -text
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:502c7ce198890e024d389059afb98843a75128a9d71b158f056aedec6360ec0f
|
||||
size 489
|
||||
oid sha256:d4ebe8bf577a37cf053df3ba4ff9372478a7a4c27db6ec2aba7180e97af776b5
|
||||
size 555
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
test_editors:
|
||||
- version: 2019.3.9f1
|
||||
- version: 2020.3.0f1
|
||||
suites:
|
||||
- name: standalone
|
||||
display_name: standalone
|
||||
|
@ -17,10 +17,10 @@ all_tests:
|
|||
flavor: b1.small
|
||||
commands:
|
||||
- dir
|
||||
triggers:
|
||||
branches:
|
||||
only:
|
||||
- "/.*/"
|
||||
#triggers:
|
||||
# branches:
|
||||
# only:
|
||||
#- "/.*/"
|
||||
artifacts:
|
||||
logs:
|
||||
paths:
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
24
README.md
24
README.md
|
@ -1,26 +1,30 @@
|
|||
<img src="docs/images/unity-wide.png" align="middle" width="3000"/>
|
||||
|
||||
<p align="center">
|
||||
<img src="docs/images/unity-wide.png" width="3000"/>
|
||||
<img src="docs/images/banner.PNG" align="middle"/>
|
||||
</p>
|
||||
|
||||
# SynthDet: An end-to-end object detection pipeline using synthetic data
|
||||
[![license badge](https://img.shields.io/badge/license-Apache--2.0-green.svg)](LICENSE.md)
|
||||
## Overview
|
||||
SynthDet is an open source project that demonstrates an end-to-end object detection pipeline using synthetic image data. The project includes all the code and assets for generating a synthetic dataset in Unity. Using recent [research](#Citation), SynthDet utilizes Unity's Perception package to generate highly randomized images of 64 common grocery products (example: cereal boxes and candy) and export them along with appropriate labels and annotations (2D bounding boxes). The synthetic dataset generated can then be used to train a deep learning based object detection model.
|
||||
This project is geared towards ML practitioners and enthusiasts who are actively exploring synthetic data or just looking to get started.
|
||||
SynthDet is an open source project that demonstrates an end-to-end object detection pipeline using synthetic image data. The project includes all the code and assets for generating a synthetic dataset in Unity. Based on recent [research](#Citation), SynthDet utilizes Unity's [Perception](https://github.com/Unity-Technologies/com.unity.perception) package to generate highly randomized images of 63 common grocery products (example: cereal boxes and candy) and export them along with appropriate labels and annotations (2D bounding boxes). The synthetic dataset generated can then be used to train a deep learning based object detection model. This project is geared towards ML practitioners and enthusiasts who are actively exploring synthetic data or just looking to get started.
|
||||
|
||||
|
||||
### [Getting started with SynthDet](docs/Readme.md)
|
||||
|
||||
## Contents
|
||||
* SynthDet - Sample computer vision data generation project using Unity's Perception package
|
||||
* 3D Assets - High quality models of 64 commonly found grocery products
|
||||
* Unity's Perception package
|
||||
* Unity Dataset Insights Python package
|
||||
## Components
|
||||
* SynthDet Unity Project - Sample computer vision data generation project, demonstrating proper integration and usage of the Perception package for environment randomization and ground-truth generation.
|
||||
* 3D Assets - High quality models of 63 commonly found grocery products
|
||||
* Unity's [Perception](https://github.com/Unity-Technologies/com.unity.perception) package.
|
||||
* Unity's [Dataset Insights](https://github.com/Unity-Technologies/datasetinsights) Python package
|
||||
|
||||
## Inspiration
|
||||
SynthDet was inspired by the following research paper from Google Cloud AI:
|
||||
|
||||
Hinterstoisser, S., Pauly, O., Heibel, H., Marek, M., & Bokeloh, M. (2019). [*An Annotation Saved is an Annotation Earned: Using Fully Synthetic Training for Object Instance Detection.* ](https://arxiv.org/pdf/1902.09967.pdf)
|
||||
|
||||
## Unity project development
|
||||
The original version of the SynthDet Unity project was developed in tandem with the early versions of Unity's Perception package. This project closely followed the synthetic data generation method introduced by the above mentioned Google Cloud AI paper. However, the original project did not use the randomization toolset that was introduced in later versions of the Perception package. To access this original project, and for more details on how it was implemented to replicate the research paper, please visit the [SynthDet_Original](https://github.com/Unity-Technologies/SynthDet/tree/SynthDet_Original) branch of this repository. The results reported in our related blog posts were based on this original project. That said, early experiments with datasets generated using the current version of the project have shown very similar model-training performance to that of the original one.
|
||||
|
||||
## Support
|
||||
For general questions or concerns please contact the Unity Computer Vision team at computer-vision@unity3d.com.
|
||||
|
||||
|
@ -34,7 +38,7 @@ If you find this package useful, consider citing it using:
|
|||
title={Training a performant object detection {ML} model on synthetic data using {U}nity {P}erception tools},
|
||||
author={You-Cyuan Jhang and Adam Palmar and Bowen Li and Saurav Dhakad and Sanjay Kumar Vishwakarma and Jonathan Hogins and Adam Crespi and Chris Kerr and Sharmila Chockalingam and Cesar Romero and Alex Thaman and Sujoy Ganguly},
|
||||
howpublished = {\url{https://blogs.unity3d.com/2020/09/17/training-a-performant-object-detection-ml-model-on-synthetic-data-using-unity-computer-vision-tools/}},
|
||||
journal={Unity Techonologies Blog},
|
||||
journal={Unity Technologies Blog},
|
||||
publisher={Unity Technologies},
|
||||
year={2020},
|
||||
month={Sep}
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
# Auto detect text files and perform LF normalization
|
||||
* text=auto
|
|
@ -0,0 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:db7b5a23604d537fb1201aa0366e48771128f68ba7817d777127750a17d1ea37
|
||||
size 587
|
|
@ -1,5 +1,5 @@
|
|||
fileFormatVersion: 2
|
||||
guid: c0230e011ba219f42a40f66d200e48a5
|
||||
guid: f2a6a55b23a504333a6dfd74eecf75d9
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
|
@ -1,5 +1,5 @@
|
|||
fileFormatVersion: 2
|
||||
guid: a8594d6de98a67e42afdd02286a71cc1
|
||||
guid: 5b8ba0d8203294cce8bb532ed94058b5
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
|
@ -1,5 +1,5 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 4df46a11d2ed01c47a1191dfc6b6ed14
|
||||
guid: 6e7d79b8987874764b91439d423c70a1
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 0
|
|
@ -1,5 +1,5 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 1b0b3572afa8f40d197495ff08c6e14d
|
||||
guid: c874110e3bb4b4030a3e05b6f4a15751
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
|
@ -1,14 +1,14 @@
|
|||
fileFormatVersion: 2
|
||||
guid: fcaff2cd98006ec468ea9d8a0ce10626
|
||||
guid: 81d416e6df60a409883e36e737111e88
|
||||
ModelImporter:
|
||||
serializedVersion: 19300
|
||||
serializedVersion: 20101
|
||||
internalIDToNameTable: []
|
||||
externalObjects:
|
||||
- first:
|
||||
type: UnityEngine:Material
|
||||
assembly: UnityEngine.CoreModule
|
||||
name: 08 - Default
|
||||
second: {fileID: 2100000, guid: ee4257cd490e24a4180c4ce252b26789, type: 2}
|
||||
second: {fileID: 2100000, guid: 6e7d79b8987874764b91439d423c70a1, type: 2}
|
||||
materials:
|
||||
materialImportMode: 1
|
||||
materialName: 0
|
||||
|
@ -48,11 +48,13 @@ ModelImporter:
|
|||
importBlendShapes: 1
|
||||
importCameras: 1
|
||||
importLights: 1
|
||||
fileIdsGeneration: 1
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
bakeAxisConversion: 0
|
||||
preserveHierarchy: 0
|
||||
skinWeightsMode: 0
|
||||
maxBonesPerVertex: 4
|
||||
|
@ -62,6 +64,9 @@ ModelImporter:
|
|||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVMarginMethod: 1
|
||||
secondaryUVMinLightmapResolution: 40
|
||||
secondaryUVMinObjectScale: 1
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
tangentSpace:
|
|
@ -1,14 +1,14 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 1adc266ccd9e7a148856c7d7fd044f61
|
||||
guid: 0a85c15b3354845459689d0506e491e4
|
||||
ModelImporter:
|
||||
serializedVersion: 19300
|
||||
serializedVersion: 20101
|
||||
internalIDToNameTable: []
|
||||
externalObjects:
|
||||
- first:
|
||||
type: UnityEngine:Material
|
||||
assembly: UnityEngine.CoreModule
|
||||
name: 08 - Default
|
||||
second: {fileID: 2100000, guid: ee4257cd490e24a4180c4ce252b26789, type: 2}
|
||||
second: {fileID: 2100000, guid: 6e7d79b8987874764b91439d423c70a1, type: 2}
|
||||
materials:
|
||||
materialImportMode: 1
|
||||
materialName: 0
|
||||
|
@ -48,11 +48,13 @@ ModelImporter:
|
|||
importBlendShapes: 1
|
||||
importCameras: 1
|
||||
importLights: 1
|
||||
fileIdsGeneration: 1
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
bakeAxisConversion: 0
|
||||
preserveHierarchy: 0
|
||||
skinWeightsMode: 0
|
||||
maxBonesPerVertex: 4
|
||||
|
@ -62,6 +64,9 @@ ModelImporter:
|
|||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVMarginMethod: 1
|
||||
secondaryUVMinLightmapResolution: 40
|
||||
secondaryUVMinObjectScale: 1
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
tangentSpace:
|
|
@ -1,14 +1,14 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 23b3a94ad0affee47b96659ca57dd5bc
|
||||
guid: 99c0d144cf4ed47a0a961a14b5a532c6
|
||||
ModelImporter:
|
||||
serializedVersion: 19300
|
||||
serializedVersion: 20101
|
||||
internalIDToNameTable: []
|
||||
externalObjects:
|
||||
- first:
|
||||
type: UnityEngine:Material
|
||||
assembly: UnityEngine.CoreModule
|
||||
name: 08 - Default
|
||||
second: {fileID: 2100000, guid: ee4257cd490e24a4180c4ce252b26789, type: 2}
|
||||
second: {fileID: 2100000, guid: 6e7d79b8987874764b91439d423c70a1, type: 2}
|
||||
materials:
|
||||
materialImportMode: 1
|
||||
materialName: 0
|
||||
|
@ -48,11 +48,13 @@ ModelImporter:
|
|||
importBlendShapes: 1
|
||||
importCameras: 1
|
||||
importLights: 1
|
||||
fileIdsGeneration: 1
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
bakeAxisConversion: 0
|
||||
preserveHierarchy: 0
|
||||
skinWeightsMode: 0
|
||||
maxBonesPerVertex: 4
|
||||
|
@ -62,6 +64,9 @@ ModelImporter:
|
|||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVMarginMethod: 1
|
||||
secondaryUVMinLightmapResolution: 40
|
||||
secondaryUVMinObjectScale: 1
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
tangentSpace:
|
|
@ -1,14 +1,14 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 546c84dd191f5a44896e4cb2a8908951
|
||||
guid: 8d47c21380ec34f29a36640267576f3f
|
||||
ModelImporter:
|
||||
serializedVersion: 19300
|
||||
serializedVersion: 20101
|
||||
internalIDToNameTable: []
|
||||
externalObjects:
|
||||
- first:
|
||||
type: UnityEngine:Material
|
||||
assembly: UnityEngine.CoreModule
|
||||
name: 08 - Default
|
||||
second: {fileID: 2100000, guid: ee4257cd490e24a4180c4ce252b26789, type: 2}
|
||||
second: {fileID: 2100000, guid: 6e7d79b8987874764b91439d423c70a1, type: 2}
|
||||
materials:
|
||||
materialImportMode: 1
|
||||
materialName: 0
|
||||
|
@ -48,11 +48,13 @@ ModelImporter:
|
|||
importBlendShapes: 1
|
||||
importCameras: 1
|
||||
importLights: 1
|
||||
fileIdsGeneration: 1
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
bakeAxisConversion: 0
|
||||
preserveHierarchy: 0
|
||||
skinWeightsMode: 0
|
||||
maxBonesPerVertex: 4
|
||||
|
@ -62,6 +64,9 @@ ModelImporter:
|
|||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVMarginMethod: 1
|
||||
secondaryUVMinLightmapResolution: 40
|
||||
secondaryUVMinObjectScale: 1
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
tangentSpace:
|
|
@ -1,14 +1,14 @@
|
|||
fileFormatVersion: 2
|
||||
guid: e7f9267e09d07ed4a864e40b1a423708
|
||||
guid: ec9d48e9ee84445e0bdc1347ddbe7d44
|
||||
ModelImporter:
|
||||
serializedVersion: 19300
|
||||
serializedVersion: 20101
|
||||
internalIDToNameTable: []
|
||||
externalObjects:
|
||||
- first:
|
||||
type: UnityEngine:Material
|
||||
assembly: UnityEngine.CoreModule
|
||||
name: 08 - Default
|
||||
second: {fileID: 2100000, guid: ee4257cd490e24a4180c4ce252b26789, type: 2}
|
||||
second: {fileID: 2100000, guid: 6e7d79b8987874764b91439d423c70a1, type: 2}
|
||||
materials:
|
||||
materialImportMode: 1
|
||||
materialName: 0
|
||||
|
@ -48,11 +48,13 @@ ModelImporter:
|
|||
importBlendShapes: 1
|
||||
importCameras: 1
|
||||
importLights: 1
|
||||
fileIdsGeneration: 1
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
bakeAxisConversion: 0
|
||||
preserveHierarchy: 0
|
||||
skinWeightsMode: 0
|
||||
maxBonesPerVertex: 4
|
||||
|
@ -62,6 +64,9 @@ ModelImporter:
|
|||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVMarginMethod: 1
|
||||
secondaryUVMinLightmapResolution: 40
|
||||
secondaryUVMinObjectScale: 1
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
tangentSpace:
|
|
@ -1,14 +1,14 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 46fc7da634422324d806a1daf33494bd
|
||||
guid: c11109c8df6dd4a539f9327bc6fcbdfe
|
||||
ModelImporter:
|
||||
serializedVersion: 19300
|
||||
serializedVersion: 20101
|
||||
internalIDToNameTable: []
|
||||
externalObjects:
|
||||
- first:
|
||||
type: UnityEngine:Material
|
||||
assembly: UnityEngine.CoreModule
|
||||
name: 08 - Default
|
||||
second: {fileID: 2100000, guid: ee4257cd490e24a4180c4ce252b26789, type: 2}
|
||||
second: {fileID: 2100000, guid: 6e7d79b8987874764b91439d423c70a1, type: 2}
|
||||
materials:
|
||||
materialImportMode: 1
|
||||
materialName: 0
|
||||
|
@ -48,11 +48,13 @@ ModelImporter:
|
|||
importBlendShapes: 1
|
||||
importCameras: 1
|
||||
importLights: 1
|
||||
fileIdsGeneration: 1
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
bakeAxisConversion: 0
|
||||
preserveHierarchy: 0
|
||||
skinWeightsMode: 0
|
||||
maxBonesPerVertex: 4
|
||||
|
@ -62,6 +64,9 @@ ModelImporter:
|
|||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVMarginMethod: 1
|
||||
secondaryUVMinLightmapResolution: 40
|
||||
secondaryUVMinObjectScale: 1
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
tangentSpace:
|
|
@ -1,14 +1,14 @@
|
|||
fileFormatVersion: 2
|
||||
guid: c6e3fcbb7d133cf40880e91c04d0dcd0
|
||||
guid: c4b8e6dc9963e42a89ac57738b7a5e15
|
||||
ModelImporter:
|
||||
serializedVersion: 19300
|
||||
serializedVersion: 20101
|
||||
internalIDToNameTable: []
|
||||
externalObjects:
|
||||
- first:
|
||||
type: UnityEngine:Material
|
||||
assembly: UnityEngine.CoreModule
|
||||
name: 08 - Default
|
||||
second: {fileID: 2100000, guid: ee4257cd490e24a4180c4ce252b26789, type: 2}
|
||||
second: {fileID: 2100000, guid: 6e7d79b8987874764b91439d423c70a1, type: 2}
|
||||
materials:
|
||||
materialImportMode: 1
|
||||
materialName: 0
|
||||
|
@ -48,11 +48,13 @@ ModelImporter:
|
|||
importBlendShapes: 1
|
||||
importCameras: 1
|
||||
importLights: 1
|
||||
fileIdsGeneration: 1
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
bakeAxisConversion: 0
|
||||
preserveHierarchy: 0
|
||||
skinWeightsMode: 0
|
||||
maxBonesPerVertex: 4
|
||||
|
@ -62,6 +64,9 @@ ModelImporter:
|
|||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVMarginMethod: 1
|
||||
secondaryUVMinLightmapResolution: 40
|
||||
secondaryUVMinObjectScale: 1
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
tangentSpace:
|
|
@ -1,14 +1,14 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 11c41f1108b108745b326be75ee1b140
|
||||
guid: 280d05bb49d444affbfccdfb4e19a37f
|
||||
ModelImporter:
|
||||
serializedVersion: 19300
|
||||
serializedVersion: 20101
|
||||
internalIDToNameTable: []
|
||||
externalObjects:
|
||||
- first:
|
||||
type: UnityEngine:Material
|
||||
assembly: UnityEngine.CoreModule
|
||||
name: 08 - Default
|
||||
second: {fileID: 2100000, guid: ee4257cd490e24a4180c4ce252b26789, type: 2}
|
||||
second: {fileID: 2100000, guid: 6e7d79b8987874764b91439d423c70a1, type: 2}
|
||||
materials:
|
||||
materialImportMode: 1
|
||||
materialName: 0
|
||||
|
@ -48,11 +48,13 @@ ModelImporter:
|
|||
importBlendShapes: 1
|
||||
importCameras: 1
|
||||
importLights: 1
|
||||
fileIdsGeneration: 1
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
bakeAxisConversion: 0
|
||||
preserveHierarchy: 0
|
||||
skinWeightsMode: 0
|
||||
maxBonesPerVertex: 4
|
||||
|
@ -62,6 +64,9 @@ ModelImporter:
|
|||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVMarginMethod: 1
|
||||
secondaryUVMinLightmapResolution: 40
|
||||
secondaryUVMinObjectScale: 1
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
tangentSpace:
|
|
@ -1,14 +1,14 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 8ab491418ce91dc408a711b63c10031c
|
||||
guid: a55ddfe800b024199a2e9a39d36e2df8
|
||||
ModelImporter:
|
||||
serializedVersion: 19300
|
||||
serializedVersion: 20101
|
||||
internalIDToNameTable: []
|
||||
externalObjects:
|
||||
- first:
|
||||
type: UnityEngine:Material
|
||||
assembly: UnityEngine.CoreModule
|
||||
name: 08 - Default
|
||||
second: {fileID: 2100000, guid: ee4257cd490e24a4180c4ce252b26789, type: 2}
|
||||
second: {fileID: 2100000, guid: 6e7d79b8987874764b91439d423c70a1, type: 2}
|
||||
materials:
|
||||
materialImportMode: 1
|
||||
materialName: 0
|
||||
|
@ -48,11 +48,13 @@ ModelImporter:
|
|||
importBlendShapes: 1
|
||||
importCameras: 1
|
||||
importLights: 1
|
||||
fileIdsGeneration: 1
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
bakeAxisConversion: 0
|
||||
preserveHierarchy: 0
|
||||
skinWeightsMode: 0
|
||||
maxBonesPerVertex: 4
|
||||
|
@ -62,6 +64,9 @@ ModelImporter:
|
|||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVMarginMethod: 1
|
||||
secondaryUVMinLightmapResolution: 40
|
||||
secondaryUVMinObjectScale: 1
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
tangentSpace:
|
|
@ -1,14 +1,14 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 8e83f31d23bd59746bc9c057cb3b30eb
|
||||
guid: 904ffd68a1f154e67bf7139446188855
|
||||
ModelImporter:
|
||||
serializedVersion: 19300
|
||||
serializedVersion: 20101
|
||||
internalIDToNameTable: []
|
||||
externalObjects:
|
||||
- first:
|
||||
type: UnityEngine:Material
|
||||
assembly: UnityEngine.CoreModule
|
||||
name: 08 - Default
|
||||
second: {fileID: 2100000, guid: ee4257cd490e24a4180c4ce252b26789, type: 2}
|
||||
second: {fileID: 2100000, guid: 6e7d79b8987874764b91439d423c70a1, type: 2}
|
||||
materials:
|
||||
materialImportMode: 1
|
||||
materialName: 0
|
||||
|
@ -48,11 +48,13 @@ ModelImporter:
|
|||
importBlendShapes: 1
|
||||
importCameras: 1
|
||||
importLights: 1
|
||||
fileIdsGeneration: 1
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
bakeAxisConversion: 0
|
||||
preserveHierarchy: 0
|
||||
skinWeightsMode: 0
|
||||
maxBonesPerVertex: 4
|
||||
|
@ -62,6 +64,9 @@ ModelImporter:
|
|||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVMarginMethod: 1
|
||||
secondaryUVMinLightmapResolution: 40
|
||||
secondaryUVMinObjectScale: 1
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
tangentSpace:
|
|
@ -1,5 +1,5 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 6c2859b152d1a7041aa8453c0aea0a5a
|
||||
guid: 70184ebb46f9640deb65c478a0eaf3cf
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
|
@ -0,0 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1dc96168ce44eb635a21ae92c99329349717141c889454654340069205b25528
|
||||
size 4759
|
|
@ -1,5 +1,5 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 8ae31fcff66405c4684eb5eff0240d89
|
||||
guid: 7dd7f1e1f85b04c908d48829d22f4f8b
|
||||
PrefabImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
|
@ -0,0 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f7eff53362b5b3b2e7277ca2f4440a4f3469b562c5fc47c21a90f65b7054ded1
|
||||
size 4760
|
|
@ -0,0 +1,7 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 95c2ed58ec23643a698c890a152f30c8
|
||||
PrefabImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -0,0 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2395c59b94867a7c264f6dac02104efa59100bc5268a988c3447266ca93e7ea4
|
||||
size 4760
|
|
@ -0,0 +1,7 @@
|
|||
fileFormatVersion: 2
|
||||
guid: a75f34e297d0d41939b1f730f6556b8a
|
||||
PrefabImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -0,0 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0a185214138774a6f6d7df6ad8119da176f56cc0345d654e0ad2131e1349de2c
|
||||
size 4761
|
|
@ -0,0 +1,7 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 9d09d824be2fe4617b33bb31e9eeca96
|
||||
PrefabImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -0,0 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:38ed134e2310902b3ec5e4d92a7afc28803c314d8743160b28a37517328bdab8
|
||||
size 4765
|
|
@ -0,0 +1,7 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 1279cedc9a7594696816ed4895a5a0a9
|
||||
PrefabImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -0,0 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e6479b3c45dc436e1424f8a19aae7f69166e193994703f80e58368fc87763ec3
|
||||
size 4762
|
|
@ -0,0 +1,7 @@
|
|||
fileFormatVersion: 2
|
||||
guid: a3a4f0ca1fc1e47608346e3ebad64473
|
||||
PrefabImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -0,0 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0b3781b993449a45881a0989b4fa41a774c79028df243d5f4ef838f65add25f6
|
||||
size 4763
|
|
@ -0,0 +1,7 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 0f54a45900eb3485eae0701715746760
|
||||
PrefabImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -0,0 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4a777c5be6f20cacdf02b11966103d40edde1cb8eac76b76d519367ace2df563
|
||||
size 4765
|
|
@ -0,0 +1,7 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 2bda33803207144f1b850250904cd924
|
||||
PrefabImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -0,0 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9f688c7ce243daa15da5ba25170ffc8c376eec96fce1240bde30b7b28f2d67a3
|
||||
size 4754
|
|
@ -0,0 +1,7 @@
|
|||
fileFormatVersion: 2
|
||||
guid: b65643442652f4e5cac1ba8a138fe11b
|
||||
PrefabImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -0,0 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ec627aa43c759d432c5b89d5fb30d33356ed69937339a28d9f543b8ca9a8134b
|
||||
size 4755
|
|
@ -0,0 +1,7 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 02d0dd79e02e54b0497c611f55f79aff
|
||||
PrefabImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -0,0 +1,8 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 73725c0c50cbe46bd87caa5677948d34
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше
Загрузка…
Ссылка в новой задаче