-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #143 from M3-org/thumbnail-gen
Thumbnail gen New menu to generate thumbnails working as expected :). Probably would be good to improve UI for better user experience, but that will come with user interaction and suggestions, mergin now :D
- Loading branch information
Showing
43 changed files
with
3,235 additions
and
2,019 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
{ | ||
"characters":[ | ||
{ | ||
"name": "Anata", | ||
"description": "Anata", | ||
"portrait": "./assets/portraitImages/anata.png", | ||
"manifest":"./character-assets/anata/manifest.json", | ||
"icon": "./assets/icons/class-neural-hacker.svg", | ||
"format": "vrm" | ||
}, | ||
{ | ||
"name": "Anata Male", | ||
"description": "Anata Male", | ||
"portrait": "./assets/portraitImages/anata_male.png", | ||
"manifest":"./character-assets/anata_male/manifest.json", | ||
"icon": "|", | ||
"format": "vrm" | ||
}, | ||
{ | ||
"name": "Anata Male", | ||
"description": "Anata Male", | ||
"portrait": "./assets/portraitImages/anata_male.png", | ||
"manifest":"./character-assets/test.json", | ||
"icon": "|", | ||
"format": "vrm" | ||
} | ||
], | ||
"loras":[ | ||
{ | ||
"name": "SDXL Lora 728", | ||
"description": "Poses and camera positions to create Lora for SDXL 726 x 726", | ||
"manifest":"./lora-assets/manifest.json", | ||
"icon": "|" | ||
} | ||
], | ||
"sprites":[ | ||
{ | ||
"name": "Multiple Animations", | ||
"description": "Multiple definitions for different animations converted to sprites.", | ||
"manifest":"./sprite-atlas-assets/manifest.json", | ||
"icon": "|" | ||
} | ||
|
||
], | ||
"thumbnails":[ | ||
{ | ||
"name": "Clothing Thumbnail", | ||
"description": "Create thumbnails for Clothing", | ||
"manifest":"./thumbnail-assets/manifest.json", | ||
"icon": "|" | ||
}, | ||
{ | ||
"name": "Clothing Thumbnail2", | ||
"description": "Create thumbnails for Clothing", | ||
"manifest":"./thumbnail-assets/manifest.json", | ||
"icon": "|" | ||
} | ||
], | ||
"defaultAnimations":[ | ||
{ | ||
"name": "T-Pose", | ||
"description": "T-Pose", | ||
"location":"./animations/T-Pose.fbx", | ||
"icon": "|" | ||
}, | ||
{ | ||
"name": "Dancing", | ||
"description": "Basic Dance Animation", | ||
"location":"./animations/Dancing.fbx", | ||
"icon": "|" | ||
}, | ||
{ | ||
"name": "Walking", | ||
"description": "Basic Walk Animation", | ||
"location":"./animations/Walking.fbx", | ||
"icon": "|" | ||
}, | ||
{ | ||
"name": "Waving", | ||
"description": "Basic Waving Animation", | ||
"location":"./animations/Waving.fbx", | ||
"icon": "|" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"assetsLocation": "./thumbnail-assets/", | ||
"poseAnimation": "/Idle.fbx", | ||
"animationTime":0, | ||
"backgroundColor":[0,0,0,0], | ||
"screenshotOffset":[0,0], | ||
"topFrameOffset":0.1, | ||
"bottomFrameOffset":0.1, | ||
"thumbnailsWidth":512, | ||
"thumbnailsHeight":512, | ||
"thumbnailsCollection":[ | ||
{ | ||
"traitGroup":"CLOTHING", | ||
"cameraPosition":"front-left", | ||
"cameraFrame":"mediumShot", | ||
"groupTopOffset":0.1, | ||
"groupBotomOffset":0.1 | ||
}, | ||
{ | ||
"traitGroup":"HAIR", | ||
"cameraPosition":"front-left", | ||
"cameraFrame":"mediumShot", | ||
"groupTopOffset":0.1, | ||
"groupBotomOffset":0.1 | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.