安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题




I did this in one of my adventures. You need the storydifficulty trigger. It's the only way to detect story difficulty. It releases an output based on what difficulty you are in. There's 3 options to pick from, "Normal", "Hard", and "Insane".
You need to set up animations to play based on the storydifficulty trigger. You also need to place all the enemies you need in the level. For example, you have 2 sword1, 2 spear3, and 2 hammer5 in an area. Animation 1 will play when it detects the player is playing on Normal difficulty. What I do is make animation 1 keep the 2 sword1 inside the fight area. I also make the animation move the 2 spear3 and 2 hammer5 out of bounds and kill them. The easiest and most optimized way to do that is by playing the call method, "Explode" on the out of bounds enemies. Create animations 2 and 3 for hard and insane difficulty and follow the similar process, except keep different enemies in the fight area, like 2 spear3 on hard difficulty, and 2 hammer5 on insane difficulty.
Something needs to activate the storydifficulty trigger. Easiest way to do that is by having a "PlayerUseKeyTrigger". The player presses it, it activates the storydifficulty triggers, one of them will release an output based on your story mode difficulty, which will proceed to activate one of your animations that will set up the enemies. After that process is complete, you can let the player into the fight area. If you have a lot more enemies affected from the animations, you might want to make the player wait a few seconds before they are allowed into the fighting area.
(I can't remember if storydifficulty triggers can be activated by other triggers. If not, create an animation that activates the storydifficulty triggers, there will be a call method that tries to activate them. Again, it only releases an output if the players story mode difficulty is the same as the storydifficulty trigger).
This is a bit complicated to do, but it's the only way to take advantage of the story mode difficulty settings.
https://youtu.be/-TiSl3_7H1k
Just a thing to note with the leveleditor+ mod, it lets you animate any value not supported in the normal level editor. You can tell because the checkbox will be purple, as shown in the video.