forked from ENIACJushi/TouHouLittleMaidBE
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ 为所有默认骨骼添加root骨骼,翅膀等附加物在坐下时也会跟随向下移动了
+ 为模型包转换器增加root骨骼的设置步骤,此前版本的皮肤包不在适用,需要重新生成
- Loading branch information
1 parent
6566a8b
commit 10f003a
Showing
128 changed files
with
312 additions
and
81,155 deletions.
There are no files selected for viewing
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,53 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta http-equiv="utf-8" content="text/html; charset=GBK"> | ||
<meta name="viewport" content="width=device-width"> | ||
<title>将json压缩成1行</title> | ||
</head> | ||
<body> | ||
<h1>将json压缩成1行</h1> | ||
|
||
<input type="file" id="file" name="file" style="padding:10px;" multiple/> | ||
|
||
<hr> | ||
|
||
<div style="text-indent: 10px;"> | ||
|
||
</div> | ||
|
||
<!-- 样式 --> | ||
<style type="text/css"> | ||
table td{padding:5px;} | ||
</style> | ||
|
||
<!-- 主要处理 --> | ||
<script> | ||
const fileUploader = document.getElementById('file'); | ||
fileUploader.addEventListener('change', (event) => { | ||
|
||
|
||
for(let file of event.target.files){ | ||
|
||
const reader = new FileReader(); | ||
|
||
reader.onload = function(e) { | ||
let input = e.target.result; | ||
input = JSON.parse(input); | ||
input = JSON.stringify(input); | ||
|
||
var aTag = document.createElement('a'); | ||
var blob = new Blob([input]); | ||
aTag.download = file.name; | ||
aTag.href = URL.createObjectURL(blob); | ||
aTag.click(); | ||
URL.revokeObjectURL(blob); | ||
}; | ||
|
||
reader.readAsText(file, file.name); | ||
} | ||
}); | ||
</script> | ||
</body> | ||
</html> | ||
|
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,53 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta http-equiv="utf-8" content="text/html; charset=GBK"> | ||
<meta name="viewport" content="width=device-width"> | ||
<title>新版本模型转为旧版本(1.10)</title> | ||
</head> | ||
<body> | ||
<h1>新版本模型转为旧版本</h1> | ||
|
||
<input type="file" id="file" name="file" style="padding:10px;" multiple/> | ||
|
||
<hr> | ||
|
||
<div style="text-indent: 10px;"> | ||
|
||
</div> | ||
|
||
<!-- 样式 --> | ||
<style type="text/css"> | ||
table td{padding:5px;} | ||
</style> | ||
|
||
<!-- 主要处理 --> | ||
<script> | ||
const fileUploader = document.getElementById('file'); | ||
fileUploader.addEventListener('change', (event) => { | ||
|
||
|
||
for(let file of event.target.files){ | ||
|
||
const reader = new FileReader(); | ||
|
||
reader.onload = function(e) { | ||
let input = e.target.result; | ||
input = JSON.parse(input); | ||
input = JSON.stringify(input); | ||
|
||
var aTag = document.createElement('a'); | ||
var blob = new Blob([input]); | ||
aTag.download = file.name; | ||
aTag.href = URL.createObjectURL(blob); | ||
aTag.click(); | ||
URL.revokeObjectURL(blob); | ||
}; | ||
|
||
reader.readAsText(file, file.name); | ||
} | ||
}); | ||
</script> | ||
</body> | ||
</html> | ||
|
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
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
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
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
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,19 @@ | ||
{ | ||
"format_version": "1.20.50", | ||
"minecraft:item": { | ||
"description": { | ||
|
||
"identifier": "touhou_little_maid:wireless_io" | ||
}, | ||
"components": { | ||
"minecraft:max_stack_size": 64, | ||
"minecraft:interact_button": "item.oreville:yvcmer.iprxztw", | ||
"minecraft:display_name": { | ||
"value": "item.oreville:yvcmer.name" | ||
}, | ||
"minecraft:icon": { | ||
"texture": "touhou_little_maid.dragon_skull" | ||
} | ||
} | ||
} | ||
} |
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.