Updating Guide - pastasfuture/com.hauntedpsx.render-pipelines.psx GitHub Wiki
This guide will teach you how to update your project to the most recent version of the render pipeline. This is ONLY for people who have already installed the render pipeline in a preexisting project. If you are starting from a new project, refer to the Installation Guide
Before beginning the update process, ensure your Unity project is closed to decrease the risk of an issue occurring.
Updating via Release .zip extraction into your Packages Folder.
If you have previously installed an old version of HPSXRP via the Release .zip extraction into your Packages folder method and would like to upgrade to the latest version:
- Close Unity.
- Delete the
com.hauntedpsx.render-pipelines.psxfolder inside the[Your Project Directory]/Packages/folder. - Repeat the installation instructions outlined here.
Updating via the Git URL in Packages.json file Method
If you have previously installed an old version of HPSXRP via the Installation via Git URL in Packages.json file method and would like to upgrade to the latest version:
Updating in a 2020.1 or Newer Project
In order to update your version of the HPS1RP, follow these steps:
- Open the text file located in
[Your Project Directory]/Packages/packages-lock.json - In this text file, find the section that looks like this and delete it:
"com.hauntedpsx.render-pipelines.psx": {
"version": "file:com.hauntedpsx.render-pipelines.psx",
"depth": 0,
"source": "embedded",
"dependencies": {
"com.unity.render-pipelines.core": "7.3.1"
}
},
- Save the file.
- Open your project in Unity. It will automatically download the package from github and install it.
Updating in a 2019.3 Project
In order to update your version of the HPS1RP, follow these steps:
- Open the text file located in
[Your Project Directory]/Packages/manifest.json - Near the bottom of the text file, there should be a section labeled "lock". Inside of it, you need to delete a section of code that looks like this:
"com.hauntedpsx.render-pipelines.psx": {
"revision": "HEAD",
"hash": "6f4385bc5cb359fa9196d705af29dc686c51d2db"
}
- Save the file.
- Open your project in Unity. It will automatically download the package from github and install it.
Doing this should fetch the most recent version of the HPS1RP and install it into your project.