Skip to content

Latest commit

 

History

History
43 lines (26 loc) · 1.54 KB

File metadata and controls

43 lines (26 loc) · 1.54 KB

RenderStreaming - HDRP Sample Source

This project contains all the assets that are used to create the HDRP sample for com.unity.renderstreaming package.

Symbolic links are used to share assets between this project and the main project, and on Windows, prior setup is necessary to enable symbolic links, as described below.

Setting up Git symbolic links for all users on Windows 10

  1. Open Local Security Policy by typing secpol.msc on Windows Command Prompt

>

  1. Under User Rights Assignment, find a policy called Create symbolic links and open it.
    • Click Add User or Group
    • Click Object Types
    • Make sure Groups is checked and click OK.

  1. Type USERS inside the textbox and click on Check Names to verify it, then click OK.

  1. Open git terminal on the local repository folder and type the following
git config --local core.symlinks true
git config --system core.symlinks true
git config --global core.symlinks true
  1. If you have checked out the repository before doing the above setup, you may need to do a reset by executing git reset --hard. Be careful though as this command will discard local changes to all files permanently.