Skip to content

Commit 46cd492

Browse files
committedMar 16, 2021
update
1 parent 3078af2 commit 46cd492

File tree

2 files changed

+39
-3
lines changed

2 files changed

+39
-3
lines changed
 

‎Assets/Scenes/WaitingRoom.unity

+6-3
Original file line numberDiff line numberDiff line change
@@ -704,9 +704,9 @@ Camera:
704704
m_NormalizedViewPortRect:
705705
serializedVersion: 2
706706
x: 0
707-
y: 0.000073969364
707+
y: 0.00016579032
708708
width: 1
709-
height: 0.99985206
709+
height: 0.9996684
710710
near clip plane: 0.3
711711
far clip plane: 1000
712712
field of view: 60
@@ -784,7 +784,7 @@ RectTransform:
784784
m_GameObject: {fileID: 1273947751}
785785
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
786786
m_LocalPosition: {x: 0, y: 0, z: 0}
787-
m_LocalScale: {x: 0.78229165, y: 0.78229165, z: 0.78229165}
787+
m_LocalScale: {x: 0.34895834, y: 0.34895834, z: 0.34895834}
788788
m_Children:
789789
- {fileID: 1663654503}
790790
- {fileID: 405038285}
@@ -877,6 +877,8 @@ MonoBehaviour:
877877
channelName:
878878
maxNum: 0
879879
maxSubscribersText: {fileID: 976606612}
880+
channelNameText: {fileID: 455672495}
881+
isHost: 0
880882
subscribersText: {fileID: 2009421431}
881883
--- !u!1 &1359741617
882884
GameObject:
@@ -1250,6 +1252,7 @@ MonoBehaviour:
12501252
m_Script: {fileID: 11500000, guid: 683c3f195ce4d43d9bf518823bab5a4c, type: 3}
12511253
m_Name:
12521254
m_EditorClassIdentifier:
1255+
dropdownComponent: {fileID: 0}
12531256
parent: {fileID: 0}
12541257
dialog: {fileID: 0}
12551258
--- !u!114 &1663654505

‎git_find_big.sh

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
#!/bin/bash
2+
#set -x
3+
4+
# Shows you the largest objects in your repo's pack file.
5+
# Written for osx.
6+
#
7+
# @see http://stubbisms.wordpress.com/2009/07/10/git-script-to-show-largest-pack-objects-and-trim-your-waist-line/
8+
# @author Antony Stubbs
9+
10+
# set the internal field spereator to line break, so that we can iterate easily over the verify-pack output
11+
IFS=$'\n';
12+
13+
# list all objects including their size, sort by size, take top 10
14+
objects=`git verify-pack -v .git/objects/pack/pack-*.idx | grep -v chain | sort -k3nr | head`
15+
16+
echo "All sizes are in kB's. The pack column is the size of the object, compressed, inside the pack file."
17+
18+
output="size,pack,SHA,location"
19+
for y in $objects
20+
do
21+
# extract the size in bytes
22+
size=$((`echo $y | cut -f 5 -d ' '`/1024))
23+
# extract the compressed size in bytes
24+
compressedSize=$((`echo $y | cut -f 6 -d ' '`/1024))
25+
# extract the SHA
26+
sha=`echo $y | cut -f 1 -d ' '`
27+
# find the objects location in the repository tree
28+
other=`git rev-list --all --objects | grep $sha`
29+
#lineBreak=`echo -e "\n"`
30+
output="${output}\n${size},${compressedSize},${other}"
31+
done
32+
33+
echo -e $output | column -t -s ', '

0 commit comments

Comments
 (0)