Skip to content

Commit 3f2b65d

Browse files
authored
Update README.md
1 parent fce14d8 commit 3f2b65d

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,34 @@
11
# UnityHubModding
22
for educational purposes only!
33

4+
## Contents
5+
-
6+
7+
8+
<hr>
9+
410
### Uncheck "Connect to Unity Cloud" by default
11+
- Tested on Hub 3.6.1
512
- open build/renderer/main.js
613
- find line:<br> ```{testId:"connect-services-checkbox",id:"unified-project-enabled-checkbox",isChecked:Y,onChange```
714
- replace with:<br> ```{testId:"connect-services-checkbox",id:"unified-project-enabled-checkbox",isChecked:0==1,onChange```
815

916
### Enable Create Project Button (without having to select Cloud Organization)
17+
- Tested on Hub 3.6.1
1018
- open build/renderer/main.js
1119
- find line:<br> ```{r({id:"cancel-create-project",label:"Cancel"}),e()},testId:`cancel-project-${i.name}`},n("common:CANCEL")),s.default.createElement(u.Button,{isDisabled:o||S,onClick:function(){r```
1220
- replace with:<br> ```{r({id:"cancel-create-project",label:"Cancel"}),e()},testId:`cancel-project-${i.name}`},n("common:CANCEL")),s.default.createElement(u.Button,{isDisabled:1==0,onClick:function()```
1321

1422
### Remove Version Control & Cloud Dashboard columns
23+
- Tested on Hub 3.6.1
1524
- https://unitycoder.com/blog/2023/10/29/unityhub-3-6-0-remove-version-control-cloud-dashboard-columns/
1625

1726
### Add Support for Custom Project Titles from ProjectName.txt or ProjectSettings ProductName field (instead of using folder name)
27+
- Tested on Hub 3.6.1
1828
- https://unitycoder.com/blog/2023/12/07/unityhub-add-support-for-custom-project-titles-instead-of-folder-name/
1929

30+
### Add IRC Chat to Hub window (using iframe)
31+
- Tested on Hub 3.6.1
32+
- Open nuild/renderer/index.html
33+
- Add any IRC embed code before ```</body>```, like: ```<iframe src="https://chat.undernet.org/" style="background: #444; width:99%; height:450px;"></iframe>```
34+
- Video example: https://www.youtube.com/watch?v=3e9FSimbdfk

0 commit comments

Comments
 (0)