From 741c44894066ed01dc0fad50eb0d21c3f4fdaad1 Mon Sep 17 00:00:00 2001 From: NightFox Date: Mon, 27 Nov 2023 12:51:33 +0300 Subject: [PATCH] update readme --- readme.en.md | 7 ++++++- readme.ru.md | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/readme.en.md b/readme.en.md index 4376cdd..bd1d118 100644 --- a/readme.en.md +++ b/readme.en.md @@ -44,10 +44,15 @@ 10. Look at the result in the game. Render supports reloading materials on the fly through the console command `rt_debug_reload_patches` (`bind g rt_debug_reload_patches`), but if you want to change the same texture you need to temporarily add to the material line `"force_reload" "1"` (at the moment render can not determine itself changed texture or not). -11. When the material is ready, commit the change to your fork and put a pull-request in the main repository. If you did everything correctly, your changes will go into the main repository. Afterwards, you can reset your repository to the current main repository stage: +11. When the material is ready, commit the change to your fork and put a pull-request in the main repository. If you did everything correctly, your changes will go into the main repository. + +12. From time to time you should update your repository to the current state of the main repository: ```bash git remote add upstream https://rtxash.omgwtf.ru/Half-Life-RTX/Half-Life-PBR + git pull upstream master + + # if something goes wrong you can reset your repository git fetch upstream git checkout master git reset --hard upstream/master diff --git a/readme.ru.md b/readme.ru.md index 98d43f8..7180b6d 100644 --- a/readme.ru.md +++ b/readme.ru.md @@ -44,10 +44,15 @@ 10. Смотрим на результат в игре. Рендер поддерживает перезагрузку материалов на лету через консольную команду `rt_debug_reload_patches` (`bind g rt_debug_reload_patches`), однако если вы хотите менять одну и ту же текстуру вам потребуется временно добавить в материал строку `"force_reload" "1"` (на данный момент рендер не может сам определить изменялась текстура или нет). -11. Когда материал готов, коммитим в свой форк изменение и выставляем пулл реквест в основной репозиторий. Если вы всё сделали правильно ваши изменения уйдут в основной репозиторий. После вы можете сбросить состояние своего репозитория до актуального основного так: +11. Когда материал готов, коммитим в свой форк изменение и выставляем пулл реквест в основной репозиторий. Если вы всё сделали правильно ваши изменения уйдут в основной репозиторий. + +12. Время от времени нужно обновлять свой репозиторий до актуального состояния основного репозитория: ```bash git remote add upstream https://rtxash.omgwtf.ru/Half-Life-RTX/Half-Life-PBR + git pull upstream master + + # если что-то пошло не так вы можете сбросить свой репозиторий git fetch upstream git checkout master git reset --hard upstream/master