forked from shiptest-ss13/Shiptest
-
-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Обновлена информация по инициализации * Починил модпак на наши руинки, теперь всё работает. Плюс внес наши пути в файлик сборки билда.
- Loading branch information
1 parent
73f8907
commit 7e8a86a
Showing
4 changed files
with
47 additions
and
22 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 |
---|---|---|
@@ -1,18 +1,27 @@ | ||
/// name - название модпака. Используется для поиска других модпаков в init. | ||
/// desc - описание для модпака. Может использоваться для списка глаголов модпака в качестве описания. | ||
/// author - автор(ы) этого модпака. | ||
|
||
/datum/modpack/example | ||
/// Строковое имя модпака. Используется для поиска других модпаков в init. | ||
name = "НАЗВАНИЕ" | ||
/// Строковое описание для модпака. Может использоваться для списка глаголов модпака в качестве описания. | ||
desc = "ОПИСАНИЕ" | ||
/// Строка с авторами этого модпака. | ||
name = "ОСМЫСЛЕННОЕ_ПОНЯТНОЕ_НАЗВАНИЕ" | ||
desc = "КОРОТКОЕ_ОПИСАНИЕ_МОДПАКА" | ||
author = "АВТОР(Ы)" | ||
|
||
///**********************************************************************/// | ||
/// Эти проки нужны, для того чтобы инициализировать датумы в определенный момент времени | ||
/// сборки билда. Инициализация обновляет данные в билде повторно, перезаписывая новыми значениями | ||
/// из модпака. Но иногда, сама инциализация есть и вызывается в кор коде в определенный момент, и | ||
/// тогда такие проки не нужны и вовсе. Также проки не нужны если в модпаке только объекты находятся. | ||
/// Если эти конструкции не нужны, просто закоментируй их! | ||
/// (можешь использовать все три, но запуск билда увеличится на 0.1 сек, за каждый датум в модпаке) | ||
|
||
/datum/modpack/example/pre_initialize() /// Эти конструкции нужны, для того чтобы в вашем модпаке что-то происходило. | ||
// Инициализация ДО | ||
/datum/modpack/example/pre_initialize() | ||
. = ..() | ||
|
||
/datum/modpack/example/initialize() /// Если эти три конструкции не нужны, просто удалите их! | ||
// Инициализация ВОВРЕМЯ | ||
/datum/modpack/example/initialize() | ||
. = ..() | ||
|
||
// Инициализация ПОСЛЕ | ||
/datum/modpack/example/post_initialize() | ||
. = ..() |
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