У нас вы можете посмотреть бесплатно RainWorld Watcher Spoilers!: Empty Abyss Ambience или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
I was able to go on a quick modding adventure and deleted the rot worm, making this ambience a lot more eerie. Here's the link to the mod if you also want an empty void!:https://steamcommunity.com/sharedfile... The mod was so small, I'll put it in the comments. using System; using BepInEx; using UnityEngine; namespace no.More.Rot.Worm { [BepInPlugin("blujai.invior", "inv savior", "0.1.0")] public class Class1 : BaseUnityPlugin { public const string PLUGIN_GUID = "Blujai.SilentUE"; public const string PLUGIN_NAME = "Anti Rot Worm"; public const string PLUGIN_VERSION = "0.1.0"; public void OnEnable() { On.RotWormScene.ctor += RotWormScene_ctor; } private void RotWormScene_ctor(On.RotWormScene.orig_ctor orig, RotWormScene self, Room room) { orig(self, room); // Find the RotWorm in the elements list and destroy it foreach (var e in self.elements) { if (e is RotWorm worm) { worm.Destroy(); } } // Remove it from the scene element list self.elements.RemoveAll(e =(greater than) e is RotWorm); } } }