Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
1. download https://www.techpowerup.com/forums/attachments/laa_2_0_4-zip.34392/
(just enter it into your search bar on google)
2. open up "laa_2_0_4" and drag "Large Address Aware" into the "_windows" folder for Darkest Dungeon
CONFUSED?
go to Darkest Dungeon in your library, then click the Manage > Browse local files > _windows
-file path should look like "Program Files (x86) > Steam > steamapps > common > DarkestDungeon > _windows"
3. open the "_windows" folder and open "Large Address Aware" and click on the "..." for "Select an Executable"
4. select "Darkest"
5. check the box and save
LAA or Large Address Aware increases RAM limit for Darkest Dungeon, which allows mods to fully load assets.
reload game and check if it works.
https://github.com/MonteePoke/SpineConverter2.1.27-for-DragonBones/releases/download/v1.0.5/Spine.Converter.v1.0.5.zip
使用方法:
1.转成json:
将同名的ldbreaker.sprite.attack_pierce.skel、ldbreaker.sprite.attack_pierce.atlas和ldbreaker.sprite.attack_pierce.png三个文件同时拖动Spine.Converter.exe文件,自动转换成ldbreaker.sprite.attack_pierce.json文件。
2.转回skel:
删除备份ldbreaker.sprite.attack_pierce.skel文件到别的地方,然后将ldbreaker.sprite.attack_pierce.png、ldbreaker.sprite.attack_pierce.atlas、修改好的ldbreaker.sprite.attack_pierce.json同时拖动到Spine.Converter.exe文件即可,生成ldbreaker.sprite.attack_pierce.skel文件。
Couldn't find bone: fxskill, anim: attack_kiss, file:
mods/E1/heroes/shieldbreaker/anim/shie ldbreaker.sprite.attack_kiss.skel
这些skel文件中缺失了fkskill骨架,且好像就是没有用到,解决方法可以考虑,用Spine.Converter.exe把skel转成json文件。
然后借鉴同作者其他不报错的作品代码,在json文件中,里面的 "bones"的中括号中,增加fxskill相关代码,代码最后大致如下:(大括号中fxskill是报错缺失的代码)
"bones": [
{
"name": "fxskill",
"color": "9b9b9bff"
}, {
"name": "bone",
"parent": "fxskill",
"scaleX": 0.11999999731779099,
"scaleY": 0.11999999731779099,
"color": "9b9b9bff"
},
....省略多行代码
]
最后,再通过Spine.Converter 把json文件转成skel文件。复制替换mod中的源文件即可。