Initial commit
BIN
Packages/com.vrchat.worlds/Editor/Udon/External/VRC.Udon.Compiler.dll
vendored
Normal file
BIN
Packages/com.vrchat.worlds/Editor/Udon/External/VRC.Udon.EditorBindings.dll
vendored
Normal file
BIN
Packages/com.vrchat.worlds/Editor/Udon/External/VRC.Udon.Graph.dll
vendored
Normal file
BIN
Packages/com.vrchat.worlds/Editor/Udon/External/VRC.Udon.UAssembly.dll
vendored
Normal file
BIN
Packages/com.vrchat.worlds/Editor/Udon/External/VRC.Udon.VRCGraphModules.dll
vendored
Normal file
BIN
Packages/com.vrchat.worlds/Editor/Udon/External/VRC.Udon.VRCTypeResolverModules.dll
vendored
Normal file
|
After Width: | Height: | Size: 157 B |
|
After Width: | Height: | Size: 843 B |
BIN
Packages/com.vrchat.worlds/Editor/Udon/Resources/DropdownBG.png
Normal file
|
After Width: | Height: | Size: 321 B |
BIN
Packages/com.vrchat.worlds/Editor/Udon/Resources/TextBoxBG.png
Normal file
|
After Width: | Height: | Size: 1001 B |
|
After Width: | Height: | Size: 1001 B |
BIN
Packages/com.vrchat.worlds/Editor/Udon/Resources/ToolbarBG.png
Normal file
|
After Width: | Height: | Size: 148 B |
|
After Width: | Height: | Size: 185 B |
@@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<engine:UXML
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:engine="UnityEngine.Experimental.UIElements"
|
||||
xsi:noNamespaceSchemaLocation="../UIElementsSchema/UIElements.xsd"
|
||||
xsi:schemaLocation="UnityEngine.Experimental.UIElements ../UIElementsSchema/UnityEngine.Experimental.UIElements.xsd">
|
||||
|
||||
<engine:ScrollView stretch-content-width="true">
|
||||
<engine:VisualElement name="section">
|
||||
<engine:Label text="New Hotkeys" name="header" />
|
||||
<engine:TextElement text="Press and hold one of the following keys, then click anywhere on the graph to create the corresponding node:" />
|
||||
<engine:TextElement text=" 1 : float" />
|
||||
<engine:TextElement text=" 2 : Vector2" />
|
||||
<engine:TextElement text=" 3 : Vector3" />
|
||||
<engine:TextElement text=" 4 : Vector4" />
|
||||
<engine:TextElement text=" b : Branch" />
|
||||
<engine:TextElement text=" + : float addition" />
|
||||
<engine:TextElement text=" - : float subtraction" />
|
||||
<engine:TextElement text=" = : float equality comparision" />
|
||||
<engine:TextElement text=" shift+b : Block" />
|
||||
<engine:TextElement text=" " />
|
||||
<engine:TextElement text="Press and hold 'C', then click on a constant to convert it into a variable." />
|
||||
<engine:TextElement text="Press and hold 'Shift+F', then click on a node that outputs an array type, to generate a foreach loop automatically." />
|
||||
<engine:TextElement text="The constant to variable and foreach loop features are also available in the right click menus for their respective nodes." />
|
||||
</engine:VisualElement>
|
||||
</engine:ScrollView>
|
||||
</engine:UXML>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 913 B |
|
After Width: | Height: | Size: 913 B |
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,187 @@
|
||||
GridBackground#bg {
|
||||
--line-color:rgba(0,0,0,0.2);
|
||||
--spacing: 25;
|
||||
--grid-background-color: rgba(20,20,20,1.0);
|
||||
}
|
||||
|
||||
.UdonNode #node-border {
|
||||
margin-top:0;
|
||||
margin-right:0;
|
||||
margin-bottom:0;
|
||||
margin-left:0;
|
||||
padding-top:0;
|
||||
padding-right:0;
|
||||
padding-bottom:0;
|
||||
padding-left:0;
|
||||
border-radius: 10px;
|
||||
border-color:rgba(150,150,150,1);
|
||||
border-left-width:2px;
|
||||
border-right-width:2px;
|
||||
border-top-width:2px;
|
||||
border-bottom-width:2px;
|
||||
}
|
||||
|
||||
.UdonNode #subtitle {
|
||||
color:rgb(10,10,10);
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
UdonNode.GameObject #title-label, UdonNode.GameObject #subtitle {
|
||||
color:#BC00BC;
|
||||
}
|
||||
|
||||
UdonNode.Transform #title-label {
|
||||
color:rgba(255,255,255,1);
|
||||
}
|
||||
|
||||
UdonNode.Transform > #node-border {
|
||||
border-color:rgba(50,50,50,1);
|
||||
}
|
||||
|
||||
.UdonNode > #node-border > #contents > #top > #input {
|
||||
background-color: rgba(50,50,50,0.98);
|
||||
}
|
||||
|
||||
.UdonNode > #node-border > #contents > #top > #output {
|
||||
background-color: rgba(30,30,30,0.98);
|
||||
}
|
||||
|
||||
.UdonNode #title {
|
||||
background-color: rgba(200,200,190,1);
|
||||
}
|
||||
|
||||
.UdonNode Label#title-label {
|
||||
color: black;
|
||||
font-size: 18px;
|
||||
-unity-font-style: bold;
|
||||
}
|
||||
|
||||
.UdonNode #divider.horizontal {
|
||||
border-color: rgba(0,0,0,1);
|
||||
}
|
||||
|
||||
|
||||
.UdonNode #help-button {
|
||||
background-color: rgba(0,0,0,0);
|
||||
}
|
||||
|
||||
.UdonNode:hover #help-button > #icon {
|
||||
background-color: black;
|
||||
}
|
||||
|
||||
.UdonNode:hover #collapse-button > #icon {
|
||||
background-color: black;
|
||||
}
|
||||
|
||||
Edge.edge {
|
||||
--edge-width:6;
|
||||
--edge-color:rgba(0,0,0,1);
|
||||
--selected-edge-color:rgba(255,255,255,0.5);
|
||||
--ghost-edge-color:rgba(255,0,0,1);
|
||||
}
|
||||
|
||||
.int #title {
|
||||
background-color:rgba(203,230,91,1);
|
||||
}
|
||||
|
||||
.int #node-border{
|
||||
border-color:rgba(203,230,91,1);
|
||||
}
|
||||
|
||||
.Get #title {
|
||||
background-color:rgba(254,64,185,1);
|
||||
}
|
||||
|
||||
.Get #node-border {
|
||||
border-color:rgba(254,64,185,1);
|
||||
}
|
||||
|
||||
.Set #title {
|
||||
background-color:rgba(244,50,74,1);
|
||||
}
|
||||
|
||||
.Set #node-border {
|
||||
border-color:rgba(244,50,74,1);
|
||||
}
|
||||
|
||||
.String #title {
|
||||
background-color:rgba(177,121,219,1);
|
||||
}
|
||||
|
||||
.String #node-border {
|
||||
border-color:rgba(177,121,219,1);
|
||||
}
|
||||
|
||||
.Random #title {
|
||||
background-color:rgba(251,156,90,1);
|
||||
}
|
||||
|
||||
.Random #node-border {
|
||||
border-color:rgba(251,156,90,1);
|
||||
}
|
||||
|
||||
.Mathf #title {
|
||||
background-color:rgba(252,199,85,1);
|
||||
}
|
||||
|
||||
.Mathf #node-border {
|
||||
border-color:rgba(252,199,85,1);
|
||||
}
|
||||
|
||||
.Color #title {
|
||||
background-color:rgba(130,0,129,1);
|
||||
}
|
||||
|
||||
.Color #node-border {
|
||||
border-color:rgba(130,0,129,1);
|
||||
}
|
||||
|
||||
.Branch #title {
|
||||
background-color:rgba(254,89,194,1);
|
||||
}
|
||||
|
||||
.Branch #node-border {
|
||||
border-color:rgba(254,89,194,1);
|
||||
}
|
||||
|
||||
.Null #title {
|
||||
background-color:rgba(57,0,57,1);
|
||||
}
|
||||
|
||||
.Null #node-border {
|
||||
border-color:rgba(57,0,57,1);
|
||||
}
|
||||
|
||||
.op #title {
|
||||
background-color:rgba(170,230,217,1);
|
||||
}
|
||||
|
||||
.op #node-border {
|
||||
border-color:rgba(170,230,217,1);
|
||||
}
|
||||
|
||||
.Networking #title {
|
||||
background-color:rgba(248,194,99,1);
|
||||
}
|
||||
|
||||
.Networking #node-border {
|
||||
border-color:rgba(248,194,99,1);
|
||||
}
|
||||
|
||||
.LateUpdate #title {
|
||||
background-color:rgba(25,175,255,1);
|
||||
}
|
||||
|
||||
.LateUpdate #node-border {
|
||||
border-color:rgba(25,75,255,1);
|
||||
}
|
||||
|
||||
#UdonMap {
|
||||
background-color:rgba(0,0,0,0.25);
|
||||
border-color:rgba(10,10,10, 0);
|
||||
}
|
||||
|
||||
#UdonMap Label {
|
||||
visibility: hidden;
|
||||
color: rgba(0,180,255,1);
|
||||
}
|
||||
@@ -0,0 +1,748 @@
|
||||
.textElement {
|
||||
color: rgb(255,255,255);
|
||||
}
|
||||
|
||||
Button {
|
||||
}
|
||||
|
||||
#UdonToolbar {
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
#UdonToolbar > ToolbarButton {
|
||||
border-right-width: 0;
|
||||
}
|
||||
|
||||
Toolbar > ToolbarFlexSpacer.toolbarFlexSpacer {
|
||||
}
|
||||
|
||||
Toolbar > ToolbarButton.toolbarButton {
|
||||
color:rgb(255,255,255);
|
||||
}
|
||||
|
||||
Toolbar > UdonGraphStatus.toolbarButton {
|
||||
color:rgb(255,255,255);
|
||||
}
|
||||
|
||||
Toolbar > .updateOrderField {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
Toolbar > .updateOrderField > IntegerField {
|
||||
min-width: 50px;
|
||||
}
|
||||
|
||||
Toolbar .textElement {
|
||||
color:rgb(255,255,255);
|
||||
}
|
||||
|
||||
Toolbar > ToolbarMenu.toolbarMenu {
|
||||
background-image:resource("DropdownBG");
|
||||
color:rgb(255,255,255);
|
||||
}
|
||||
|
||||
Toolbar > ToolbarMenu.toolbarMenu:hover:active {
|
||||
background-image:resource("DropdownBG");
|
||||
}
|
||||
|
||||
#UdonToolbar .graphTab {
|
||||
margin: 0;
|
||||
padding: 3px 6px;
|
||||
color:rgb(170,255,255);
|
||||
background-color: rgba(0,0,0,0.2);
|
||||
border-right-width: 1px;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
flex: 1;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
#UdonToolbar .graphTab:hover {
|
||||
background-color: rgba(0,0,0,0.5);
|
||||
}
|
||||
|
||||
#UdonToolbar .graphTab.selected {
|
||||
background-color: rgba(0,0,0,0.5);
|
||||
}
|
||||
|
||||
#UdonToolbar .graphTab .graphTabClose {
|
||||
background-image: none;
|
||||
background-color: rgba(0,0,0,0);
|
||||
border-width: 0;
|
||||
padding: 5px;
|
||||
display: flex;
|
||||
}
|
||||
#UdonToolbar .graphTab .graphTabClose:hover {
|
||||
background-color: rgba(255,255,255,0.1);
|
||||
}
|
||||
|
||||
|
||||
#contentViewContainer {
|
||||
background-color:#ffcc33;
|
||||
}
|
||||
|
||||
#curtain {
|
||||
flex:1;
|
||||
justify-content:center;
|
||||
background-color:rgba(0,0,0,0.7);
|
||||
}
|
||||
|
||||
#curtain Label {
|
||||
font-size:26px;
|
||||
-unity-font-style:bold;
|
||||
color:rgb(0,200,255);
|
||||
-unity-text-align:middle-center;
|
||||
align-self:center;
|
||||
}
|
||||
|
||||
UdonWelcomeView {
|
||||
margin-top:20px;
|
||||
background-image: resource("UdonLogoAlpha");
|
||||
background-color: #2D2D2D;
|
||||
-unity-background-scale-mode: scale-to-fit;
|
||||
}
|
||||
|
||||
UdonWelcomeView #intro {
|
||||
margin-top:15px;
|
||||
margin-bottom:20px;
|
||||
align-self:center;
|
||||
font-size:26px;
|
||||
color:rgb(255,255,255);
|
||||
}
|
||||
|
||||
UdonWelcomeView #header-message {
|
||||
margin: 5px 20px 30px;
|
||||
-unity-text-align:middle-left;
|
||||
align-self:center;
|
||||
font-size:16px;
|
||||
color:rgb(0,200,255);
|
||||
-unity-font-style:bold;
|
||||
}
|
||||
|
||||
UdonWelcomeView #main {
|
||||
flex:1;
|
||||
flex-direction:row;
|
||||
}
|
||||
|
||||
UdonWelcomeView #column-2 {
|
||||
flex:0.5;
|
||||
margin-right:10px;
|
||||
}
|
||||
|
||||
#column-2 Button {
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
UdonWelcomeView #tutorial {
|
||||
flex:1;
|
||||
background-color: #000;
|
||||
margin-bottom:20px;
|
||||
border-color:rgb(100,100,100);
|
||||
border-radius:10px;
|
||||
border-width:1px;
|
||||
}
|
||||
|
||||
UdonWelcomeView #tutorial #header {
|
||||
color:#a6a6a6;
|
||||
margin-top:10px;
|
||||
-unity-text-align:middle-center;
|
||||
font-size:24px;
|
||||
}
|
||||
|
||||
UdonWelcomeView #tutorial Toolbar {
|
||||
height:30px;
|
||||
justify-content:center;
|
||||
border-radius: 0 0 10px 10px;
|
||||
}
|
||||
|
||||
UdonWelcomeView #tutorial Toolbar #button-play{
|
||||
color:rgb(50,200,50);
|
||||
}
|
||||
|
||||
UdonWelcomeView #tutorial Toolbar #button-pause{
|
||||
color:rgb(175,130,0);
|
||||
}
|
||||
|
||||
UdonWelcomeView #tutorial #video-proxy {
|
||||
flex:1;
|
||||
margin-right:2px;
|
||||
}
|
||||
|
||||
#main #settings {
|
||||
flex:1;
|
||||
padding-left:10px;
|
||||
color: rgb(255,255,255);
|
||||
}
|
||||
|
||||
UdonWelcomeView #settings #header {
|
||||
color:rgb(100,200,100);
|
||||
font-size:18px;
|
||||
margin-top:20px;
|
||||
margin-bottom:20px;
|
||||
}
|
||||
|
||||
UdonWelcomeView #settings #section #header {
|
||||
font-size:14px;
|
||||
}
|
||||
|
||||
#main #settings ScrollView {
|
||||
flex:1;
|
||||
}
|
||||
|
||||
UdonWelcomeView #settings Toggle {
|
||||
margin-top:10px;
|
||||
}
|
||||
|
||||
UdonWelcomeView #settings Button {
|
||||
align-self:flex-start;
|
||||
}
|
||||
|
||||
UdonWelcomeView #settings .settings-item-container {
|
||||
flex-direction:row;
|
||||
}
|
||||
|
||||
UdonWelcomeView #settings IntegerField {
|
||||
width:25px;
|
||||
}
|
||||
|
||||
UdonWelcomeView #settings .settings-label {
|
||||
color:rgb(180,180,180);
|
||||
white-space: normal;
|
||||
margin-bottom:10px;
|
||||
}
|
||||
|
||||
#changelog {
|
||||
color:rgb(255,255,255);
|
||||
font-size:14px;
|
||||
flex:0.5;
|
||||
}
|
||||
|
||||
#changelog ScrollView {
|
||||
flex: 1;
|
||||
margin-left:15px;
|
||||
margin-right:15px;
|
||||
}
|
||||
|
||||
#changelog #ContentView {
|
||||
}
|
||||
|
||||
#changelog #header {
|
||||
color:rgb(0,200,255);
|
||||
font-size:18px;
|
||||
margin-left:-3px;
|
||||
margin-bottom:10px;
|
||||
}
|
||||
|
||||
#changelog #section {
|
||||
margin-bottom:20px;
|
||||
}
|
||||
|
||||
#changelog #section TextElement {
|
||||
color:rgb(255,255,255);
|
||||
margin-bottom:5px;
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
GridBackground#bg {
|
||||
background-image:resource("UdonLogoAlpha");
|
||||
--grid-background-color: rgba(0,0,0,0.1);
|
||||
-unity-background-scale-mode: scale-to-fit;
|
||||
--line-color:rgba(25,25,25,1);
|
||||
--spacing: 15;
|
||||
}
|
||||
|
||||
UdonGraph {
|
||||
background-color:#323232;
|
||||
}
|
||||
|
||||
#mouse-tip-container {
|
||||
min-width: 128px;
|
||||
min-height: 128px;
|
||||
max-width: 128px;
|
||||
max-height: 128px;
|
||||
}
|
||||
|
||||
#mouse-tip {
|
||||
white-space: normal;
|
||||
flex:1;
|
||||
}
|
||||
|
||||
#stackNodeHeaderContainer Label {
|
||||
-unity-text-align:middle-center;
|
||||
font-size:16px;
|
||||
-unity-font-style:bold;
|
||||
}
|
||||
|
||||
Edge.edge {
|
||||
--edge-width:3;
|
||||
--layer:0;
|
||||
}
|
||||
|
||||
Edge.edge.highlighted {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
Edge.edge.muted {
|
||||
--edge-width:1;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
UdonPort.flow > #connector {
|
||||
width:16px;
|
||||
height:16px;
|
||||
background-color: rgba(0,0,0,0);
|
||||
background-image: resource("UdonFlowSlot");
|
||||
border-width:0;
|
||||
border-radius:0;
|
||||
}
|
||||
|
||||
UdonPort.port {
|
||||
--port-color:rgb(150,150,150);
|
||||
}
|
||||
|
||||
UdonPort.port > #connector {
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
UdonPort.flow > #connector > #cap {
|
||||
visibility:hidden;
|
||||
}
|
||||
|
||||
UdonPort.flow {
|
||||
--port-color: rgb(255,255,255);
|
||||
}
|
||||
|
||||
UdonPort.port #type {
|
||||
padding-left:1px;
|
||||
}
|
||||
|
||||
UdonPort.typeSingle.port {
|
||||
}
|
||||
|
||||
UdonPort.typeInt.port {
|
||||
}
|
||||
|
||||
UdonPort.typeString.port {
|
||||
}
|
||||
|
||||
UdonPort.typeBoolean.port {
|
||||
}
|
||||
|
||||
UdonPort.typeVector3.port {
|
||||
}
|
||||
|
||||
UdonPort.typeVRCPlayerApi.port {
|
||||
}
|
||||
|
||||
UdonPort EnumField {
|
||||
padding-right:20px;
|
||||
}
|
||||
|
||||
UdonPort.connected > #VariablePopup {
|
||||
visibility: hidden;
|
||||
width: 0;
|
||||
}
|
||||
|
||||
GetOrSetProgramVariableNode UdonPort.symbolName TextField {
|
||||
visibility: hidden;
|
||||
width: 0;
|
||||
}
|
||||
|
||||
UdonPort.connected > #EventNamePopup {
|
||||
visibility: hidden;
|
||||
width: 0;
|
||||
}
|
||||
|
||||
SendCustomEventNode UdonPort.eventName TextField {
|
||||
visibility: hidden;
|
||||
width: 0;
|
||||
}
|
||||
|
||||
#resize-container {
|
||||
flex-direction:row;
|
||||
}
|
||||
|
||||
#resize-container IntegerField {
|
||||
width:35px;
|
||||
}
|
||||
|
||||
#array-scroll {
|
||||
min-height:150px;
|
||||
}
|
||||
|
||||
#array-scroll ColorField {
|
||||
max-width:120px;
|
||||
}
|
||||
|
||||
#array-scroll TextField {
|
||||
min-width:65px;
|
||||
}
|
||||
|
||||
.UdonNode {
|
||||
--layer:1;
|
||||
}
|
||||
|
||||
.UdonNode.muted {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.UdonNode.highlighted {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.UdonNode #title-container {
|
||||
flex:1;
|
||||
}
|
||||
|
||||
.UdonNode Label#title-label {
|
||||
flex:1;
|
||||
margin: 0 6px 3px 5px;
|
||||
-unity-text-align:middle-left;
|
||||
color:rgb(255,255,255);
|
||||
font-size:16px;
|
||||
}
|
||||
|
||||
.UdonNode #subtitle {
|
||||
margin: 2px 6px 0 5px;
|
||||
color:rgb(150,150,150);
|
||||
font-size:10px;
|
||||
}
|
||||
|
||||
.UdonNode #title {
|
||||
height:40px;
|
||||
background-color:rgb(10,10,10);
|
||||
}
|
||||
|
||||
.UdonNode #contents > #top > #input {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
|
||||
.UdonNode EnumField {
|
||||
flex-shrink: 1;
|
||||
}
|
||||
|
||||
.UdonNode #divider.horizontal {
|
||||
border-bottom-width:3px;
|
||||
border-color:rgb(77,157,255);
|
||||
}
|
||||
|
||||
.Event #divider.horizontal {
|
||||
border-color:rgb(135,255,77);
|
||||
}
|
||||
|
||||
.input > TextField {
|
||||
width:128px;
|
||||
}
|
||||
|
||||
BlackboardRow .unity-base-field {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.input > FloatField {
|
||||
width:32px;
|
||||
}
|
||||
|
||||
.input > IntegerField {
|
||||
width: 32px;
|
||||
}
|
||||
|
||||
.input > ColorField {
|
||||
width: 128px;
|
||||
}
|
||||
|
||||
.input > GradientField {
|
||||
width: 128px;
|
||||
}
|
||||
|
||||
.UdonNode #collapse-button {
|
||||
width:20px;
|
||||
padding-left:0;
|
||||
}
|
||||
|
||||
.UdonNode FloatField, .UdonNode IntegerField {
|
||||
width:50px;
|
||||
margin-right:5px;
|
||||
}
|
||||
|
||||
.UdonNode #help-button {
|
||||
background-image: none;
|
||||
background-color: rgb(10,10,10);
|
||||
width:20px;
|
||||
justify-content:center;
|
||||
margin:0;
|
||||
border-width:0;
|
||||
}
|
||||
|
||||
.UdonNode #help-button > #icon {
|
||||
width:12px;
|
||||
height:12px;
|
||||
align-self:center;
|
||||
opacity:0.5;
|
||||
visibility:hidden;
|
||||
-unity-font-style:bold;
|
||||
-unity-text-align:middle-center;
|
||||
color:rgb(255,255,255);
|
||||
}
|
||||
|
||||
.UdonNode:hover #help-button > #icon {
|
||||
visibility:visible;
|
||||
}
|
||||
|
||||
.UdonNode #help-button:hover > #icon {
|
||||
opacity:1;
|
||||
}
|
||||
|
||||
.UdonNode #contents > #top > #input {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
|
||||
.UdonNode PopupField {
|
||||
flex-shrink: 1;
|
||||
}
|
||||
|
||||
.scope .group{
|
||||
opacity: 0.5;
|
||||
--layer: 0;
|
||||
}
|
||||
|
||||
#comment {
|
||||
min-width:128px;
|
||||
min-height:40px;
|
||||
background-color: #191919;
|
||||
border-width:1px;
|
||||
border-color: rgb(70,70,70);
|
||||
}
|
||||
|
||||
#comment:focus {
|
||||
border-color: rgb(143,193,223);
|
||||
}
|
||||
|
||||
#comment Label {
|
||||
font-size:20px;
|
||||
-unity-text-align:upper-center;
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
#comment .mainContainer {
|
||||
justify-content:center;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#comment TextField {
|
||||
font-size:20px;
|
||||
white-space: normal;
|
||||
-unity-text-align:upper-center;
|
||||
}
|
||||
|
||||
#comment .resizer {
|
||||
padding-top:0;
|
||||
padding-left:0;
|
||||
}
|
||||
|
||||
#comment .resizer-icon {
|
||||
right:1px;
|
||||
bottom:1px;
|
||||
background-image:none;
|
||||
border-color:rgb(170,170,170);
|
||||
border-bottom-width:1px;
|
||||
border-right-width:1px;
|
||||
border-bottom-right-radius:6px;
|
||||
cursor: resize-up-left;
|
||||
visibility:hidden;
|
||||
}
|
||||
|
||||
#comment:hover .resizer-icon {
|
||||
visibility:visible;
|
||||
}
|
||||
|
||||
UdonParameterProperty {
|
||||
padding-left: 13px;
|
||||
}
|
||||
|
||||
UdonParameterProperty>Toggle, UdonParameterProperty>VisualElement {
|
||||
background-color:#333;
|
||||
margin-left:4px;
|
||||
margin-right:4px;
|
||||
padding: 5px 3px;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
UdonParameterProperty PopupField {
|
||||
min-width:70px;
|
||||
min-height:25px;
|
||||
}
|
||||
|
||||
#syncToggle PopupField Label {
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
#Parameters #contentContainer {
|
||||
padding-bottom: 12px;
|
||||
padding-top: 2px;
|
||||
}
|
||||
|
||||
#Parameters {
|
||||
border-color: rgba(0,0,0,0);
|
||||
}
|
||||
|
||||
#Parameters.selected {
|
||||
border-color: rgba(0,0,0,0);
|
||||
}
|
||||
|
||||
#Parameters.blackboard > .mainContainer > #content > #header > #labelContainer > #titleLabel {
|
||||
font-size: 13px;
|
||||
margin-left: 5px;
|
||||
margin-top: 2px;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
#Parameters #header Button {
|
||||
margin-right: 6px;
|
||||
}
|
||||
|
||||
#Parameters .resizer {
|
||||
padding-top:0;
|
||||
padding-left:0;
|
||||
}
|
||||
|
||||
#Parameters .resizer-icon {
|
||||
right:1px;
|
||||
bottom:1px;
|
||||
background-image:none;
|
||||
border-color:rgb(170,170,170);
|
||||
border-bottom-width:1px;
|
||||
border-right-width:1px;
|
||||
border-bottom-right-radius:6px;
|
||||
cursor: resize-up-left;
|
||||
visibility:hidden;
|
||||
}
|
||||
|
||||
#Parameters:hover .resizer-icon {
|
||||
visibility:visible;
|
||||
}
|
||||
|
||||
UdonParameterField #contentItem > Label {
|
||||
padding-right: 0;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
UdonParameterField .pill #contents > #top > #icon {
|
||||
width: 4px;
|
||||
height: 4px;
|
||||
border-radius: 2px;
|
||||
margin-top: 0;
|
||||
margin-left: 2px;
|
||||
}
|
||||
|
||||
UdonParameterField Image {
|
||||
background-color: #ffffff;
|
||||
}
|
||||
|
||||
UdonMinimap.graphElement {
|
||||
background-color:rgba(0,0,0,0.6);
|
||||
width: 217px;
|
||||
height: 100px;
|
||||
border-radius: 1px;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
UdonGraphStatus {
|
||||
width:36px;
|
||||
margin-right: -2px;
|
||||
margin-left: 0;
|
||||
height: 20px;
|
||||
}
|
||||
UdonGraphStatus #Content {
|
||||
color:rgb(255,255,255);
|
||||
-unity-text-align:middle-center;
|
||||
padding-bottom:2px;
|
||||
}
|
||||
|
||||
UdonProgramSourceView {
|
||||
background-color:rgba(0,0,0,0.5);
|
||||
align-self:flex-end;
|
||||
flex:1;
|
||||
width:300px;
|
||||
top: 48px;
|
||||
position: absolute;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
UdonProgramSourceView #Container {
|
||||
flex:1;
|
||||
}
|
||||
|
||||
UdonProgramSourceView ScrollView {
|
||||
flex:1;
|
||||
}
|
||||
|
||||
UdonProgramSourceView #Header {
|
||||
font-size:12px;
|
||||
-unity-text-align:middle-left;
|
||||
}
|
||||
|
||||
UdonProgramSourceView #AssemblyField {
|
||||
width:300px;
|
||||
background-color:rgba(30,30,30, 1);
|
||||
color:rgb(255,255,255);
|
||||
padding: 10px;
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
.UdonValueField {
|
||||
min-height: 15px;
|
||||
margin: 2px 4px;
|
||||
padding: 1px 3px 2px;
|
||||
color: #B4B4B4;
|
||||
cursor: text;
|
||||
overflow: hidden;
|
||||
background-image: resource("TextBoxBG");
|
||||
-unity-slice-top: 3;
|
||||
-unity-slice-right: 3;
|
||||
-unity-slice-bottom: 3;
|
||||
-unity-slice-left: 3;
|
||||
}
|
||||
|
||||
.UdonValueField:focus {
|
||||
color: rgb(0.239, 0.502, 0.875);
|
||||
}
|
||||
|
||||
.UdonValueField:focus {
|
||||
background-image: resource("TextBoxBGFocused");
|
||||
}
|
||||
|
||||
UdonPort > .unity-base-field {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
UdonVariablesBlackboard.blackboard {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
|
||||
UdonVariablesBlackboard.blackboard > .mainContainer > #content > #header > #addButton.udonVariableAddButton {
|
||||
font-size: 12px;
|
||||
margin-top: 1px;
|
||||
}
|
||||
|
||||
UdonVariablesBlackboard.blackboard > .mainContainer > #content > #header {
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0;
|
||||
}
|
||||
|
||||
.udonSearchUnderlay {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0;
|
||||
left: 0;
|
||||
position: absolute;
|
||||
background-color: rgba(255,255,255,0);
|
||||
}
|
||||
|
||||
.input > .portFieldCustomEvent {
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
width: 100%;
|
||||
}
|
||||
BIN
Packages/com.vrchat.worlds/Editor/Udon/Resources/UdonLogo.png
Normal file
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 28 KiB |
|
After Width: | Height: | Size: 28 KiB |
|
After Width: | Height: | Size: 164 B |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 925 B |
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 227 B |
|
After Width: | Height: | Size: 284 B |
|
After Width: | Height: | Size: 4.5 KiB |
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<engine:UXML
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:engine="UnityEngine.Experimental.UIElements"
|
||||
xmlns:editor="UnityEditor.Experimental.UIElements"
|
||||
xsi:noNamespaceSchemaLocation="../UIElementsSchema/UIElements.xsd"
|
||||
xsi:schemaLocation="UnityEngine.Experimental.UIElements ../UIElementsSchema/UnityEngine.Experimental.UIElements.xsd">
|
||||
|
||||
<engine:Label text="Settings" name="header" />
|
||||
<engine:ScrollView stretch-content-width="true">
|
||||
|
||||
<engine:VisualElement name="section" />
|
||||
|
||||
</engine:ScrollView>
|
||||
|
||||
</engine:UXML>
|
||||
@@ -0,0 +1,153 @@
|
||||
UdonSidebar.graphElement {
|
||||
position: absolute;
|
||||
top: 20px;
|
||||
left: 0;
|
||||
width: 234px;
|
||||
height: 100%;
|
||||
background-color: #383838;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
padding-bottom: 20px;
|
||||
border-radius: 0;
|
||||
border-top-width: 0;
|
||||
border-left-width: 0;
|
||||
border-bottom-width: 0;
|
||||
}
|
||||
|
||||
UdonSidebar.graphElement .draggableBorder {
|
||||
position: absolute;
|
||||
cursor: resize-horizontal;
|
||||
right: -1px;
|
||||
width: 5px;
|
||||
height: 100%;
|
||||
background-color: #1f1f1f;
|
||||
}
|
||||
|
||||
UdonSidebar.graphElement > .scrollerPlaceholder {
|
||||
position: absolute;
|
||||
right: 4px;
|
||||
width: 12px;
|
||||
height: 100%;
|
||||
background-color: #353535;
|
||||
border-left-color: #2a2a2a;
|
||||
border-left-width: 1px;
|
||||
}
|
||||
|
||||
UdonSidebar.graphElement .udonGraphSearch {
|
||||
display: flex;
|
||||
width: 217px;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
padding: 4px;
|
||||
background-color: #393939;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
UdonSidebar.graphElement .udonGraphSearch .udonGraphSearchInput {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
UdonSidebar.graphElement .udonGraphSearch .udonGraphSearchInput .udonGraphSearchPlaceholder {
|
||||
color: rgba(255,255,255,0.5);
|
||||
font-size: 11px;
|
||||
position: absolute;
|
||||
top: 2px;
|
||||
left: 2px;
|
||||
}
|
||||
|
||||
UdonSidebar.graphElement .udonGraphSearch .udonGraphSearchInput .udonGraphSearchPlaceholder.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
UdonSidebar.graphElement > ScrollView {
|
||||
height: 100%;
|
||||
width: 230px;
|
||||
}
|
||||
|
||||
UdonSidebar.graphElement > ScrollView > #unity-content-viewport > #unity-content-container {
|
||||
}
|
||||
UdonSidebar.graphElement .baseBlock {
|
||||
width: 217px;
|
||||
height: auto;
|
||||
background-color: #2B2B2B;
|
||||
border-top-width: 1px;
|
||||
border-top-color: #212121;
|
||||
}
|
||||
|
||||
UdonSidebar.graphElement .baseBlock .header {
|
||||
background-color: #393939;
|
||||
padding: 6px 4px;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
UdonSidebar.graphElement .baseBlock .header > VisualElement {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
UdonSidebar.graphElement .baseBlock .header .collapseIcon {
|
||||
background-image: resource("graphview/nodes/nodechevrondown.png");
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
UdonSidebar.graphElement .baseBlock.collapsed .header .collapseIcon {
|
||||
background-image: resource("graphview/nodes/nodechevronright.png");
|
||||
}
|
||||
|
||||
UdonSidebar.graphElement .baseBlock.collapsed .content,
|
||||
UdonSidebar.graphElement .baseBlock.collapsed .list {
|
||||
overflow: hidden;
|
||||
height: 0;
|
||||
padding: 0;
|
||||
border-bottom-width: 1px;
|
||||
border-bottom-color: #212121;
|
||||
}
|
||||
|
||||
UdonSidebar.graphElement .baseBlock .content,
|
||||
UdonSidebar.graphElement .baseBlock .list {
|
||||
padding: 6px 5px;
|
||||
}
|
||||
|
||||
UdonSidebar.graphElement .baseBlock .list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
UdonGraphEvents .udonEvent {
|
||||
-unity-text-align: middle-left;
|
||||
border-left-width: 2px;
|
||||
border-left-color: #87FF4D;
|
||||
}
|
||||
|
||||
UdonGraphEvents .udonEvent.customEvent {
|
||||
border-left-color: #93B3F8;
|
||||
}
|
||||
|
||||
UdonGraphEvents .udonEvent.variableChange {
|
||||
border-left-color: #c27287;
|
||||
}
|
||||
|
||||
UdonSidebar.graphElement .baseBlock .placeholder {
|
||||
-unity-text-align: upper-left;
|
||||
display: flex;
|
||||
width: 100%;
|
||||
flex-basis: 100%;
|
||||
font-size: 11px;
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
UdonGraphGroups .udonGroup {
|
||||
-unity-text-align: middle-left;
|
||||
border-left-width: 2px;
|
||||
border-left-color: #FFC107;
|
||||
}
|
||||
|
||||
UdonGraphStatus {
|
||||
height: 100%;
|
||||
}
|
||||
BIN
Packages/com.vrchat.worlds/Editor/Udon/Resources/UdonSlot.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 2.9 KiB |
|
After Width: | Height: | Size: 2.9 KiB |
@@ -0,0 +1,67 @@
|
||||
UdonGraphToolbar {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
height: 28px;
|
||||
top: 20px;
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
background-color: #383838;
|
||||
border-bottom-color: #1F1F1F;
|
||||
border-bottom-width: 3px;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
UdonGraphToolbar .toolbarSpacer {
|
||||
width: 238px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
UdonGraphToolbar > VisualElement {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
UdonGraphToolbar .updateOrderField {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
padding: 4px 0 4px 0;
|
||||
min-width: 50px;
|
||||
flex-shrink: 1;
|
||||
}
|
||||
|
||||
UdonGraphToolbar .updateOrderField Label {
|
||||
position: relative;
|
||||
top: -2px;
|
||||
}
|
||||
|
||||
UdonGraphToolbar .toolbarRightSide {
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
UdonGraphToolbar Button {
|
||||
background-image: none;
|
||||
background-color: rgba(255,255,255,0);
|
||||
border-left-width: 1px;
|
||||
border-right-width: 0;
|
||||
border-top-width: 0;
|
||||
border-bottom-width: 0;
|
||||
border-radius: 0;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
border-color: #1F1F1F;
|
||||
margin: 0;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
UdonGraphToolbar Button.selected {
|
||||
background-color: rgba(255,255,255,0.1);
|
||||
}
|
||||
|
||||
UdonGraphToolbar Button:hover {
|
||||
background-color: rgba(255,255,255,0.15);
|
||||
}
|
||||
BIN
Packages/com.vrchat.worlds/Editor/Udon/Resources/videoStill.png
Normal file
|
After Width: | Height: | Size: 820 B |
@@ -0,0 +1,412 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!29 &1
|
||||
OcclusionCullingSettings:
|
||||
m_ObjectHideFlags: 0
|
||||
serializedVersion: 2
|
||||
m_OcclusionBakeSettings:
|
||||
smallestOccluder: 5
|
||||
smallestHole: 0.25
|
||||
backfaceThreshold: 100
|
||||
m_SceneGUID: 00000000000000000000000000000000
|
||||
m_OcclusionCullingData: {fileID: 0}
|
||||
--- !u!104 &2
|
||||
RenderSettings:
|
||||
m_ObjectHideFlags: 0
|
||||
serializedVersion: 9
|
||||
m_Fog: 0
|
||||
m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
||||
m_FogMode: 3
|
||||
m_FogDensity: 0.01
|
||||
m_LinearFogStart: 0
|
||||
m_LinearFogEnd: 300
|
||||
m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1}
|
||||
m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1}
|
||||
m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1}
|
||||
m_AmbientIntensity: 1
|
||||
m_AmbientMode: 0
|
||||
m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}
|
||||
m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0}
|
||||
m_HaloStrength: 0.5
|
||||
m_FlareStrength: 1
|
||||
m_FlareFadeSpeed: 3
|
||||
m_HaloTexture: {fileID: 0}
|
||||
m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0}
|
||||
m_DefaultReflectionMode: 0
|
||||
m_DefaultReflectionResolution: 128
|
||||
m_ReflectionBounces: 1
|
||||
m_ReflectionIntensity: 1
|
||||
m_CustomReflection: {fileID: 0}
|
||||
m_Sun: {fileID: 0}
|
||||
m_IndirectSpecularColor: {r: 0.18028378, g: 0.22571412, b: 0.30692285, a: 1}
|
||||
m_UseRadianceAmbientProbe: 0
|
||||
--- !u!157 &3
|
||||
LightmapSettings:
|
||||
m_ObjectHideFlags: 0
|
||||
serializedVersion: 11
|
||||
m_GIWorkflowMode: 1
|
||||
m_GISettings:
|
||||
serializedVersion: 2
|
||||
m_BounceScale: 1
|
||||
m_IndirectOutputScale: 1
|
||||
m_AlbedoBoost: 1
|
||||
m_EnvironmentLightingMode: 0
|
||||
m_EnableBakedLightmaps: 1
|
||||
m_EnableRealtimeLightmaps: 0
|
||||
m_LightmapEditorSettings:
|
||||
serializedVersion: 12
|
||||
m_Resolution: 2
|
||||
m_BakeResolution: 40
|
||||
m_AtlasSize: 1024
|
||||
m_AO: 0
|
||||
m_AOMaxDistance: 1
|
||||
m_CompAOExponent: 1
|
||||
m_CompAOExponentDirect: 0
|
||||
m_ExtractAmbientOcclusion: 0
|
||||
m_Padding: 2
|
||||
m_LightmapParameters: {fileID: 0}
|
||||
m_LightmapsBakeMode: 1
|
||||
m_TextureCompression: 1
|
||||
m_FinalGather: 0
|
||||
m_FinalGatherFiltering: 1
|
||||
m_FinalGatherRayCount: 256
|
||||
m_ReflectionCompression: 2
|
||||
m_MixedBakeMode: 2
|
||||
m_BakeBackend: 1
|
||||
m_PVRSampling: 1
|
||||
m_PVRDirectSampleCount: 32
|
||||
m_PVRSampleCount: 512
|
||||
m_PVRBounces: 2
|
||||
m_PVREnvironmentSampleCount: 256
|
||||
m_PVREnvironmentReferencePointCount: 2048
|
||||
m_PVRFilteringMode: 1
|
||||
m_PVRDenoiserTypeDirect: 1
|
||||
m_PVRDenoiserTypeIndirect: 1
|
||||
m_PVRDenoiserTypeAO: 1
|
||||
m_PVRFilterTypeDirect: 0
|
||||
m_PVRFilterTypeIndirect: 0
|
||||
m_PVRFilterTypeAO: 0
|
||||
m_PVREnvironmentMIS: 1
|
||||
m_PVRCulling: 1
|
||||
m_PVRFilteringGaussRadiusDirect: 1
|
||||
m_PVRFilteringGaussRadiusIndirect: 5
|
||||
m_PVRFilteringGaussRadiusAO: 2
|
||||
m_PVRFilteringAtrousPositionSigmaDirect: 0.5
|
||||
m_PVRFilteringAtrousPositionSigmaIndirect: 2
|
||||
m_PVRFilteringAtrousPositionSigmaAO: 1
|
||||
m_ExportTrainingData: 0
|
||||
m_TrainingDataDestination: TrainingData
|
||||
m_LightProbeSampleCountMultiplier: 4
|
||||
m_LightingDataAsset: {fileID: 0}
|
||||
m_UseShadowmask: 1
|
||||
--- !u!196 &4
|
||||
NavMeshSettings:
|
||||
serializedVersion: 2
|
||||
m_ObjectHideFlags: 0
|
||||
m_BuildSettings:
|
||||
serializedVersion: 2
|
||||
agentTypeID: 0
|
||||
agentRadius: 0.5
|
||||
agentHeight: 2
|
||||
agentSlope: 45
|
||||
agentClimb: 0.4
|
||||
ledgeDropHeight: 0
|
||||
maxJumpAcrossDistance: 0
|
||||
minRegionArea: 2
|
||||
manualCellSize: 0
|
||||
cellSize: 0.16666667
|
||||
manualTileSize: 0
|
||||
tileSize: 256
|
||||
accuratePlacement: 0
|
||||
debug:
|
||||
m_Flags: 0
|
||||
m_NavMeshData: {fileID: 0}
|
||||
--- !u!1 &285526749
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 285526751}
|
||||
- component: {fileID: 285526750}
|
||||
m_Layer: 0
|
||||
m_Name: Directional Light
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!108 &285526750
|
||||
Light:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 285526749}
|
||||
m_Enabled: 1
|
||||
serializedVersion: 10
|
||||
m_Type: 1
|
||||
m_Shape: 0
|
||||
m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1}
|
||||
m_Intensity: 1
|
||||
m_Range: 10
|
||||
m_SpotAngle: 30
|
||||
m_InnerSpotAngle: 21.80208
|
||||
m_CookieSize: 10
|
||||
m_Shadows:
|
||||
m_Type: 2
|
||||
m_Resolution: -1
|
||||
m_CustomResolution: -1
|
||||
m_Strength: 1
|
||||
m_Bias: 0.05
|
||||
m_NormalBias: 0.4
|
||||
m_NearPlane: 0.2
|
||||
m_CullingMatrixOverride:
|
||||
e00: 1
|
||||
e01: 0
|
||||
e02: 0
|
||||
e03: 0
|
||||
e10: 0
|
||||
e11: 1
|
||||
e12: 0
|
||||
e13: 0
|
||||
e20: 0
|
||||
e21: 0
|
||||
e22: 1
|
||||
e23: 0
|
||||
e30: 0
|
||||
e31: 0
|
||||
e32: 0
|
||||
e33: 1
|
||||
m_UseCullingMatrixOverride: 0
|
||||
m_Cookie: {fileID: 0}
|
||||
m_DrawHalo: 0
|
||||
m_Flare: {fileID: 0}
|
||||
m_RenderMode: 0
|
||||
m_CullingMask:
|
||||
serializedVersion: 2
|
||||
m_Bits: 4294967295
|
||||
m_RenderingLayerMask: 1
|
||||
m_Lightmapping: 4
|
||||
m_LightShadowCasterMode: 0
|
||||
m_AreaSize: {x: 1, y: 1}
|
||||
m_BounceIntensity: 1
|
||||
m_ColorTemperature: 6570
|
||||
m_UseColorTemperature: 0
|
||||
m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0}
|
||||
m_UseBoundingSphereOverride: 0
|
||||
m_ShadowRadius: 0
|
||||
m_ShadowAngle: 0
|
||||
--- !u!4 &285526751
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 285526749}
|
||||
m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261}
|
||||
m_LocalPosition: {x: 0, y: 3, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_Children: []
|
||||
m_Father: {fileID: 0}
|
||||
m_RootOrder: 1
|
||||
m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0}
|
||||
--- !u!1 &572933028
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 572933030}
|
||||
- component: {fileID: 572933029}
|
||||
m_Layer: 0
|
||||
m_Name: UdonTestGraph2
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!114 &572933029
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 572933028}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 45115577ef41a5b4ca741ed302693907, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
interactTextPlacement: {fileID: 0}
|
||||
interactText: Use
|
||||
interactTextGO: {fileID: 0}
|
||||
proximity: 2
|
||||
SynchronizePosition: 0
|
||||
AllowCollisionOwnershipTransfer: 1
|
||||
Reliable: 0
|
||||
_syncMethod: 2
|
||||
serializedProgramAsset: {fileID: 11400000, guid: d642b1243efff6043b83411eae2d612d,
|
||||
type: 2}
|
||||
programSource: {fileID: 11400000, guid: da113172081f2ba40b9cc46674a846d0, type: 2}
|
||||
serializedPublicVariablesBytesString: Ai8AAAAAATIAAABWAFIAQwAuAFUAZABvAG4ALgBDAG8AbQBtAG8AbgAuAFUAZABvAG4AVgBhAHIAaQBhAGIAbABlAFQAYQBiAGwAZQAsACAAVgBSAEMALgBVAGQAbwBuAC4AQwBvAG0AbQBvAG4AAAAAAAYBAAAAAAAAACcBBAAAAHQAeQBwAGUAAWgAAABTAHkAcwB0AGUAbQAuAEMAbwBsAGwAZQBjAHQAaQBvAG4AcwAuAEcAZQBuAGUAcgBpAGMALgBMAGkAcwB0AGAAMQBbAFsAVgBSAEMALgBVAGQAbwBuAC4AQwBvAG0AbQBvAG4ALgBJAG4AdABlAHIAZgBhAGMAZQBzAC4ASQBVAGQAbwBuAFYAYQByAGkAYQBiAGwAZQAsACAAVgBSAEMALgBVAGQAbwBuAC4AQwBvAG0AbQBvAG4AXQBdACwAIABtAHMAYwBvAHIAbABpAGIAAQEJAAAAVgBhAHIAaQBhAGIAbABlAHMALwEAAAABaAAAAFMAeQBzAHQAZQBtAC4AQwBvAGwAbABlAGMAdABpAG8AbgBzAC4ARwBlAG4AZQByAGkAYwAuAEwAaQBzAHQAYAAxAFsAWwBWAFIAQwAuAFUAZABvAG4ALgBDAG8AbQBtAG8AbgAuAEkAbgB0AGUAcgBmAGEAYwBlAHMALgBJAFUAZABvAG4AVgBhAHIAaQBhAGIAbABlACwAIABWAFIAQwAuAFUAZABvAG4ALgBDAG8AbQBtAG8AbgBdAF0ALAAgAG0AcwBjAG8AcgBsAGkAYgABAAAABgIAAAAAAAAAAi8CAAAAAVgAAABWAFIAQwAuAFUAZABvAG4ALgBDAG8AbQBtAG8AbgAuAFUAZABvAG4AVgBhAHIAaQBhAGIAbABlAGAAMQBbAFsAVQBuAGkAdAB5AEUAbgBnAGkAbgBlAC4AVQBJAC4AUwBsAGkAZABlAHIALAAgAFUAbgBpAHQAeQBFAG4AZwBpAG4AZQAuAFUASQBdAF0ALAAgAFYAUgBDAC4AVQBkAG8AbgAuAEMAbwBtAG0AbwBuAAIAAAAGAgAAAAAAAAAnAQQAAAB0AHkAcABlAAEXAAAAUwB5AHMAdABlAG0ALgBTAHQAcgBpAG4AZwAsACAAbQBzAGMAbwByAGwAaQBiACcBCgAAAFMAeQBtAGIAbwBsAE4AYQBtAGUAAQgAAAB1AGkAUwBsAGkAZABlAHIAJwEEAAAAdAB5AHAAZQABFwAAAFMAeQBzAHQAZQBtAC4ATwBiAGoAZQBjAHQALAAgAG0AcwBjAG8AcgBsAGkAYgAtAQUAAABWAGEAbAB1AGUABwUCLwMAAAABVgAAAFYAUgBDAC4AVQBkAG8AbgAuAEMAbwBtAG0AbwBuAC4AVQBkAG8AbgBWAGEAcgBpAGEAYgBsAGUAYAAxAFsAWwBVAG4AaQB0AHkARQBuAGcAaQBuAGUALgBVAEkALgBUAGUAeAB0ACwAIABVAG4AaQB0AHkARQBuAGcAaQBuAGUALgBVAEkAXQBdACwAIABWAFIAQwAuAFUAZABvAG4ALgBDAG8AbQBtAG8AbgADAAAABgIAAAAAAAAAJwEEAAAAdAB5AHAAZQABFwAAAFMAeQBzAHQAZQBtAC4AUwB0AHIAaQBuAGcALAAgAG0AcwBjAG8AcgBsAGkAYgAnAQoAAABTAHkAbQBiAG8AbABOAGEAbQBlAAEGAAAAdQBpAFQAZQB4AHQAJwEEAAAAdAB5AHAAZQABFwAAAFMAeQBzAHQAZQBtAC4ATwBiAGoAZQBjAHQALAAgAG0AcwBjAG8AcgBsAGkAYgAtAQUAAABWAGEAbAB1AGUABwUHBQcF
|
||||
publicVariablesUnityEngineObjects: []
|
||||
publicVariablesSerializationDataFormat: 0
|
||||
--- !u!4 &572933030
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 572933028}
|
||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_Children: []
|
||||
m_Father: {fileID: 0}
|
||||
m_RootOrder: 3
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!1 &1176873290
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 1176873293}
|
||||
- component: {fileID: 1176873292}
|
||||
- component: {fileID: 1176873291}
|
||||
m_Layer: 0
|
||||
m_Name: Main Camera
|
||||
m_TagString: MainCamera
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!81 &1176873291
|
||||
AudioListener:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1176873290}
|
||||
m_Enabled: 1
|
||||
--- !u!20 &1176873292
|
||||
Camera:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1176873290}
|
||||
m_Enabled: 1
|
||||
serializedVersion: 2
|
||||
m_ClearFlags: 1
|
||||
m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0}
|
||||
m_projectionMatrixMode: 1
|
||||
m_GateFitMode: 2
|
||||
m_FOVAxisMode: 0
|
||||
m_SensorSize: {x: 36, y: 24}
|
||||
m_LensShift: {x: 0, y: 0}
|
||||
m_FocalLength: 50
|
||||
m_NormalizedViewPortRect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 1
|
||||
height: 1
|
||||
near clip plane: 0.3
|
||||
far clip plane: 1000
|
||||
field of view: 60
|
||||
orthographic: 0
|
||||
orthographic size: 5
|
||||
m_Depth: -1
|
||||
m_CullingMask:
|
||||
serializedVersion: 2
|
||||
m_Bits: 4294967295
|
||||
m_RenderingPath: -1
|
||||
m_TargetTexture: {fileID: 0}
|
||||
m_TargetDisplay: 0
|
||||
m_TargetEye: 3
|
||||
m_HDR: 1
|
||||
m_AllowMSAA: 1
|
||||
m_AllowDynamicResolution: 0
|
||||
m_ForceIntoRT: 0
|
||||
m_OcclusionCulling: 1
|
||||
m_StereoConvergence: 10
|
||||
m_StereoSeparation: 0.022
|
||||
--- !u!4 &1176873293
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1176873290}
|
||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 1, z: -10}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_Children: []
|
||||
m_Father: {fileID: 0}
|
||||
m_RootOrder: 0
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!1 &1317367948
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 1317367950}
|
||||
- component: {fileID: 1317367949}
|
||||
m_Layer: 0
|
||||
m_Name: UdonTestGraph1
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!114 &1317367949
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1317367948}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 45115577ef41a5b4ca741ed302693907, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
interactTextPlacement: {fileID: 0}
|
||||
interactText: Use
|
||||
interactTextGO: {fileID: 0}
|
||||
proximity: 2
|
||||
SynchronizePosition: 0
|
||||
AllowCollisionOwnershipTransfer: 1
|
||||
Reliable: 0
|
||||
_syncMethod: 2
|
||||
serializedProgramAsset: {fileID: 11400000, guid: aec1ad21ec8f16449a3eb1cf3baad37e,
|
||||
type: 2}
|
||||
programSource: {fileID: 11400000, guid: 953e2e6278cc9314f9f2913d9bc25309, type: 2}
|
||||
serializedPublicVariablesBytesString: Ai8AAAAAATIAAABWAFIAQwAuAFUAZABvAG4ALgBDAG8AbQBtAG8AbgAuAFUAZABvAG4AVgBhAHIAaQBhAGIAbABlAFQAYQBiAGwAZQAsACAAVgBSAEMALgBVAGQAbwBuAC4AQwBvAG0AbQBvAG4AAAAAAAYBAAAAAAAAACcBBAAAAHQAeQBwAGUAAWgAAABTAHkAcwB0AGUAbQAuAEMAbwBsAGwAZQBjAHQAaQBvAG4AcwAuAEcAZQBuAGUAcgBpAGMALgBMAGkAcwB0AGAAMQBbAFsAVgBSAEMALgBVAGQAbwBuAC4AQwBvAG0AbQBvAG4ALgBJAG4AdABlAHIAZgBhAGMAZQBzAC4ASQBVAGQAbwBuAFYAYQByAGkAYQBiAGwAZQAsACAAVgBSAEMALgBVAGQAbwBuAC4AQwBvAG0AbQBvAG4AXQBdACwAIABtAHMAYwBvAHIAbABpAGIAAQEJAAAAVgBhAHIAaQBhAGIAbABlAHMALwEAAAABaAAAAFMAeQBzAHQAZQBtAC4AQwBvAGwAbABlAGMAdABpAG8AbgBzAC4ARwBlAG4AZQByAGkAYwAuAEwAaQBzAHQAYAAxAFsAWwBWAFIAQwAuAFUAZABvAG4ALgBDAG8AbQBtAG8AbgAuAEkAbgB0AGUAcgBmAGEAYwBlAHMALgBJAFUAZABvAG4AVgBhAHIAaQBhAGIAbABlACwAIABWAFIAQwAuAFUAZABvAG4ALgBDAG8AbQBtAG8AbgBdAF0ALAAgAG0AcwBjAG8AcgBsAGkAYgABAAAABgEAAAAAAAAAAi8CAAAAAUoAAABWAFIAQwAuAFUAZABvAG4ALgBDAG8AbQBtAG8AbgAuAFUAZABvAG4AVgBhAHIAaQBhAGIAbABlAGAAMQBbAFsAUwB5AHMAdABlAG0ALgBTAGkAbgBnAGwAZQAsACAAbQBzAGMAbwByAGwAaQBiAF0AXQAsACAAVgBSAEMALgBVAGQAbwBuAC4AQwBvAG0AbQBvAG4AAgAAAAYCAAAAAAAAACcBBAAAAHQAeQBwAGUAARcAAABTAHkAcwB0AGUAbQAuAFMAdAByAGkAbgBnACwAIABtAHMAYwBvAHIAbABpAGIAJwEKAAAAUwB5AG0AYgBvAGwATgBhAG0AZQABCwAAAG0AYQB4AEQAaQBzAHQAYQBuAGMAZQAnAQQAAAB0AHkAcABlAAEXAAAAUwB5AHMAdABlAG0ALgBTAGkAbgBnAGwAZQAsACAAbQBzAGMAbwByAGwAaQBiAB8BBQAAAFYAYQBsAHUAZQAAAAAABwUHBQcF
|
||||
publicVariablesUnityEngineObjects: []
|
||||
publicVariablesSerializationDataFormat: 0
|
||||
--- !u!4 &1317367950
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1317367948}
|
||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_Children: []
|
||||
m_Father: {fileID: 0}
|
||||
m_RootOrder: 2
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
@@ -0,0 +1,5 @@
|
||||
<UXML xmlns="UnityEngine.UIElements">
|
||||
<VisualElement name="notification-block" class="col mt-2 mb-2 w-100 align-items-center">
|
||||
<Label text="Your world was built successfully!" class="text-lg" />
|
||||
</VisualElement>
|
||||
</UXML>
|
||||
@@ -0,0 +1,3 @@
|
||||
Label {
|
||||
-unity-text-align: middle-center;
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
<UXML xmlns="UnityEngine.UIElements">
|
||||
<VisualElement name="notification-block" class="col mt-2 mb-2 w-100">
|
||||
<Label text="Your world failed to build or upload because of the following reason" />
|
||||
<Label name="notification-error-reason" class="mt-2 p-2 white-space-normal" />
|
||||
<Label text="We recommend taking a look at the console for more details" class="mt-2" />
|
||||
<Button class="mt-3 pl-4 pr-4 pt-2 pb-2 text-bold" text="Check Console for more details" name="open-unity-console" />
|
||||
</VisualElement>
|
||||
</UXML>
|
||||
@@ -0,0 +1,3 @@
|
||||
#notification-error-reason {
|
||||
background-color: rgba(255,255,255,0.2);
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
<UXML xmlns="UnityEngine.UIElements">
|
||||
<VisualElement name="notification-block" class="col mt-2 mb-2 w-100 align-items-center">
|
||||
<Label text="Your world was published to VRChat!" class="text-lg" />
|
||||
<Button class="mt-3 pl-4 pr-4 pt-2 pb-2 text-bold" text="See it on the VRChat Website" name="open-world-page-button" />
|
||||
</VisualElement>
|
||||
</UXML>
|
||||
@@ -0,0 +1,3 @@
|
||||
Label {
|
||||
-unity-text-align: middle-center;
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
<UXML xmlns="UnityEngine.UIElements">
|
||||
<ScrollView>
|
||||
<VisualElement name="root" class="p-2">
|
||||
<Label name="title" class="header3 mb-2" />
|
||||
<Label name="body" enable-rich-text="true" class="mt-2 mb-2 white-space-normal" />
|
||||
<VisualElement class="mb-2 row align-items-center w-100">
|
||||
<Button class="mr-2 bg-button-bg flex-1 pt-2 pb-2" name="yes-button" />
|
||||
<Button name="no-button" class="flex-1 pt-2 pb-2" />
|
||||
</VisualElement>
|
||||
</VisualElement>
|
||||
</ScrollView>
|
||||
</UXML>
|
||||
|
After Width: | Height: | Size: 128 KiB |
@@ -0,0 +1,48 @@
|
||||
<UXML xmlns="UnityEngine.UIElements" xmlns:uie="UnityEditor.UIElements" xmlns:vrc="VRC.SDKBase.Editor.Elements">
|
||||
<VisualElement class="col relative" name="section-3">
|
||||
<VisualElement class="mt-2 col pr-2 pl-2" name="build-buttons-block">
|
||||
<VisualElement class="row">
|
||||
<VisualElement class="col flex-grow-1 align-items-start mr-3" name="build-type-container">
|
||||
<Label class="d-flex mt-2 mb-2 text-bold" text="Build Type" />
|
||||
<!-- build-type-dropdown gets inserted here -->
|
||||
</VisualElement>
|
||||
|
||||
<VisualElement class="col" name="platform-container">
|
||||
<vrc:PlatformSwitcherPopup label="Platform(s)" name="platform-switcher-popup" />
|
||||
</VisualElement>
|
||||
|
||||
<VisualElement class="col ml-3" name="num-clients-container">
|
||||
<Label class="ml-0 mr-1 mt-2 mb-2 pr-2 d-flex text-bold" text="Clients" />
|
||||
<uie:IntegerField name="num-clients" class="ml-0" value="1"/>
|
||||
</VisualElement>
|
||||
</VisualElement>
|
||||
|
||||
<VisualElement class="row justify-content-between">
|
||||
<VisualElement class="row" name="force-non-vr-container">
|
||||
<Toggle name="force-non-vr"/>
|
||||
<Label text="Force Non-VR" class="white-space-normal m-2 options-text-color" />
|
||||
</VisualElement>
|
||||
<VisualElement class="row" name="enable-world-reload-container">
|
||||
<Label text="Enable World Reload" class="white-space-normal m-2 options-text-color" />
|
||||
<Toggle name="enable-world-reload"/>
|
||||
</VisualElement>
|
||||
</VisualElement>
|
||||
|
||||
<VisualElement class="mt-2">
|
||||
<Button name="main-action-button" class="pt-4 pb-4 text-lg text-bold ml-0 mr-0" />
|
||||
<VisualElement name="main-action-disabled-block" class="d-none absolute text-lg text-bold text-grey-200">
|
||||
<Label name="main-action-disabled-text" text="You must fix the issues listed above before you can Upload a Build" class="white-space-normal" />
|
||||
</VisualElement>
|
||||
</VisualElement>
|
||||
|
||||
<VisualElement class="row justify-content-between">
|
||||
<VisualElement class="row m-2 d-none">
|
||||
<Label text="Run Performance Streaming" class="ml-2 flex-shrink-1 white-space-normal pr-2 options-text-color text-right" />
|
||||
<Toggle name="run-performance-streaming" />
|
||||
</VisualElement>
|
||||
</VisualElement>
|
||||
</VisualElement>
|
||||
<VisualElement class="d-none" name="v3-block" />
|
||||
<vrc:BuilderProgress name="progress-bar" />
|
||||
</VisualElement>
|
||||
</UXML>
|
||||
@@ -0,0 +1,8 @@
|
||||
#local-test-settings Toggle {
|
||||
border-bottom-width: 0;
|
||||
background-color: rgba(0,0,0,0);
|
||||
}
|
||||
|
||||
#local-test-settings Toggle Label {
|
||||
-unity-font-style: normal;
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
<UXML xmlns="UnityEngine.UIElements" xmlns:uie="UnityEditor.UIElements" xmlns:vrc="VRC.SDKBase.Editor.Elements">
|
||||
<VisualElement class="row pt-2 pl-2 pr-2 pb-2 flex-grow-1" name="content-info">
|
||||
<VisualElement class="col mr-2 flex-7">
|
||||
<vrc:VRCTextField class="content-info-field mb-2" required="true" label="Name" placeholder="Enter your world's public name..." name="content-name" vertical="true" />
|
||||
<VisualElement class="row mb-2 m-unity-field">
|
||||
<VisualElement class="col flex-1">
|
||||
<VisualElement class="row align-items-center justify-content-between w-100 mb-1">
|
||||
<Label class="text-bold" text="Max. Capacity" />
|
||||
<Button class="help-button" tooltip="What is Maximum Capacity" name="show-capacity-help-button" />
|
||||
</VisualElement>
|
||||
<uie:IntegerField tooltip="Maximum capacity" class="ml-0" value="32" name="content-capacity" required="true" />
|
||||
</VisualElement>
|
||||
<VisualElement class="col flex-1">
|
||||
<VisualElement class="row align-items-center justify-content-between w-100 mb-1">
|
||||
<Label class="text-bold" text="Rec. Capacity" />
|
||||
<Button class="help-button" tooltip="What is Recommended Capacity" name="show-recommended-capacity-help-button" />
|
||||
</VisualElement>
|
||||
<uie:IntegerField tooltip="Recommended Capacity" class="ml-0 mr-0" value="16" name="content-recommended-capacity" />
|
||||
</VisualElement>
|
||||
</VisualElement>
|
||||
<VisualElement class="row m-unity-field" name="warnings-tags-block">
|
||||
<VisualElement class="col flex-1">
|
||||
<vrc:ContentWarningsField label="Content Warnings" class="mb-2 mr-unity-field" name="content-warnings" />
|
||||
</VisualElement>
|
||||
<VisualElement class="col flex-1">
|
||||
<vrc:TagsField label="Tags" class="content-info-field w-100 mt-2" name="content-tags" />
|
||||
</VisualElement>
|
||||
</VisualElement>
|
||||
<vrc:VRCTextField class="content-info-field mb-2" label="Description" multiline="true" placeholder="Describe world so it is easier to find!" name="content-description" vertical="true" />
|
||||
<VisualElement class="row mb-3">
|
||||
<VisualElement class="col m-unity-field mt-2">
|
||||
<Label class="field-label text-bold mb-2" text="Last Updated" />
|
||||
<Label text="Loading..." name="last-updated-label" />
|
||||
</VisualElement>
|
||||
<VisualElement class="col m-unity-field mt-2">
|
||||
<Label class="field-label text-bold mb-2" text="Version" />
|
||||
<Label text="Loading..." name="version-label" />
|
||||
</VisualElement>
|
||||
</VisualElement>
|
||||
<VisualElement class="col m-unity-field">
|
||||
<Label class="field-label text-bold mb-2" text="Supported Platforms" />
|
||||
<Label text="Loading..." name="content-platform-info" />
|
||||
</VisualElement>
|
||||
<VisualElement class="mt-2 mb-2 w-100 col d-none">
|
||||
<VisualElement class="row align-items-center m-unity-field">
|
||||
<Label class="field-label" text="Current Visibility" />
|
||||
<Label text="Loading..." name="visibility-label" />
|
||||
</VisualElement>
|
||||
<VisualElement class="mt-2 d-none row align-items-center" name="publish-block">
|
||||
<Button name="publish-button" class="flex-grow-1" />
|
||||
<Button class="help-button" tooltip="Learn more about Community Labs" name="community-labs-help-button" />
|
||||
</VisualElement>
|
||||
</VisualElement>
|
||||
</VisualElement>
|
||||
<VisualElement class="col flex-5">
|
||||
<VisualElement name="visibility-block" class="col mb-2" />
|
||||
<vrc:Modal title="Publish to Community Labs" name="labs-publish-modal">
|
||||
<VisualElement class="col p-3">
|
||||
<Label class="white-space-normal mb-2" text="Publishing this world will put it in to the Community Labs" />
|
||||
<Label class="white-space-normal mb-2" text="Other users will be able to see your world, and it will either stay in the Labs, get promoted to Public status, or be placed back in to Private status, based on community response." />
|
||||
<Label class="white-space-normal mb-2" text="We encourage you to get the word out about your world if you want it to survive! If your world violates our Community Guidelines, you could get in trouble by posting it!" />
|
||||
<Label class="white-space-normal" text="You're only allowed to publish one world per week, so make sure to put your best foot forward!" />
|
||||
</VisualElement>
|
||||
<VisualElement class="row pl-3 pr-3 pb-3">
|
||||
<Button text="Yes, do it!" name="publish-to-labs-btn" class="flex-1 ml-0" />
|
||||
<Button text="No, keep the world private" name="publish-to-labs-cancel-btn" class="flex-1 mr-0" />
|
||||
</VisualElement>
|
||||
</vrc:Modal>
|
||||
<vrc:Modal title="Unpublishing a World" name="unpublish-modal">
|
||||
<VisualElement class="col p-3">
|
||||
<Label class="white-space-normal mb-2" text="Unpublishing this world will remove it from Public." />
|
||||
<Label class="white-space-normal mb-2" text="If you want to make it public again, it will need to go through Community Labs." />
|
||||
<Label class="white-space-normal mb-2" text="You're only allowed to publish one world per week, and when you remove a world from the labs, you don't get your one world back. Are you sure?" />
|
||||
</VisualElement>
|
||||
<VisualElement class="row pl-3 pr-3 pb-3">
|
||||
<Button text="Yes, do it!" name="unpublish-btn" class="flex-1 ml-0" />
|
||||
<Button text="No, keep the world public" name="unpublish-cancel-btn" class="flex-1 mr-0" />
|
||||
</VisualElement>
|
||||
</vrc:Modal>
|
||||
<VisualElement class="col m-unity-field">
|
||||
<vrc:ThumbnailBlock />
|
||||
</VisualElement>
|
||||
<VisualElement class="row align-items-center justify-content-end m-unity-field">
|
||||
<Label text="World Debugging" class="field-label text-right mr-2" />
|
||||
<Toggle name="world-debugging-toggle" class="top-05 relative" />
|
||||
<Button class="help-button" tooltip="What is World Debugging" name="show-world-debugging-help-button" />
|
||||
</VisualElement>
|
||||
</VisualElement>
|
||||
</VisualElement>
|
||||
</UXML>
|
||||
@@ -0,0 +1,19 @@
|
||||
#world-debugging-toggle {
|
||||
border-bottom-width: 0;
|
||||
background-color: rgba(0,0,0,0);
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
#visibility-block PopupField {
|
||||
flex-direction: column;
|
||||
}
|
||||
#visibility-block PopupField > Label {
|
||||
font-size: 12px;
|
||||
-unity-font-style: bold;
|
||||
margin-bottom: 5px;
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
#content-description {
|
||||
min-height: 77px;
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
#listinginfo-elem {
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
#copylisting-btn {
|
||||
flex-grow: 0;
|
||||
}
|
||||
|
||||
#copygroup-btn {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
#groupinfo-label {
|
||||
flex-grow: 1;
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
<ui:UXML xmlns:ui="UnityEngine.UIElements" xmlns:uie="UnityEditor.UIElements">
|
||||
<ui:VisualElement name="listinginfo-elem" >
|
||||
<Style src="ListingInfo.uss" />
|
||||
<ui:Button text="Copy Listing ID" name="copylisting-btn" />
|
||||
<ui:Button text="Copy Group ID" name="copygroup-btn" />
|
||||
<ui:Label text="This listing is not used in any group." name="groupinfo-label" />
|
||||
</ui:VisualElement>
|
||||
</ui:UXML>
|
||||
@@ -0,0 +1,100 @@
|
||||
#product-elem {
|
||||
height: 64px;
|
||||
flex-direction: row;
|
||||
margin-top: 2px;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
#image-elem {
|
||||
width: 64px;
|
||||
flex-shrink: 0;
|
||||
background-color: rgba(0, 0, 0, 0);
|
||||
border-left-width: 1px;
|
||||
border-right-width: 1px;
|
||||
border-top-width: 1px;
|
||||
border-bottom-width: 1px;
|
||||
margin-left: 0;
|
||||
margin-right: 5px;
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
border-left-color: rgba(0, 0, 0, 0.25);
|
||||
border-right-color: rgba(0, 0, 0, 0.25);
|
||||
border-top-color: rgba(0, 0, 0, 0.25);
|
||||
border-bottom-color: rgba(0, 0, 0, 0.25);
|
||||
}
|
||||
|
||||
#imagefetch-btn {
|
||||
height: auto;
|
||||
width: auto;
|
||||
flex-grow: 1;
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
white-space: normal;
|
||||
flex-basis: 0;
|
||||
}
|
||||
|
||||
#imagedelete-btn {
|
||||
height: 12px;
|
||||
width: 12px;
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
white-space: nowrap;
|
||||
flex-grow: 0;
|
||||
-unity-font-style: bold;
|
||||
-unity-text-align: middle-center;
|
||||
font-size: 12px;
|
||||
border-left-width: 0;
|
||||
border-right-width: 0;
|
||||
border-top-width: 0;
|
||||
border-bottom-width: 0;
|
||||
position: absolute;
|
||||
left: 50px;
|
||||
}
|
||||
|
||||
#text-elem {
|
||||
font-size: 12px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#name-label {
|
||||
-unity-font-style: bold;
|
||||
font-size: 14px;
|
||||
flex-wrap: wrap;
|
||||
flex-shrink: 1;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#desc-label {
|
||||
white-space: normal;
|
||||
flex-wrap: wrap;
|
||||
font-size: 11px;
|
||||
-unity-font-style: normal;
|
||||
flex-shrink: 1;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#buttons-elem {
|
||||
flex-grow: 1;
|
||||
display: flex;
|
||||
width: 112px;
|
||||
flex-shrink: 0;
|
||||
max-width: 112px;
|
||||
}
|
||||
|
||||
#customgui-elem > Button {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
#customgui-elem {
|
||||
display: none;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
#find-btn {
|
||||
flex-grow: 1;
|
||||
white-space: normal;
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
<ui:UXML xmlns:ui="UnityEngine.UIElements" xmlns:uie="UnityEditor.UIElements">
|
||||
<ui:VisualElement name="product-elem">
|
||||
<Style src="UdonProduct.uss" />
|
||||
<ui:VisualElement name="image-elem" tooltip="Fetched product images are stored in your Unity project, which may increase the size of your world. It is recommended to only fetch the images if you plan on using them with Udon.">
|
||||
<ui:Button text="Fetch image" name="imagefetch-btn" />
|
||||
<ui:Button text="✖" name="imagedelete-btn" />
|
||||
</ui:VisualElement>
|
||||
<ui:VisualElement name="text-elem" >
|
||||
<ui:Label text="Product A" binding-path="_Name" name="name-label" />
|
||||
<ui:Label text="Description of the product, this is a description of the product right here as you can see. " binding-path="_Description" name="desc-label" />
|
||||
</ui:VisualElement>
|
||||
<ui:VisualElement name="buttons-elem" >
|
||||
<ui:VisualElement name="customgui-elem" />
|
||||
<ui:Button text="Find in project" name="find-btn" />
|
||||
</ui:VisualElement>
|
||||
</ui:VisualElement>
|
||||
</ui:UXML>
|
||||
@@ -0,0 +1,29 @@
|
||||
<ui:UXML xmlns:ui="UnityEngine.UIElements" xmlns:uie="UnityEditor.UIElements">
|
||||
<ui:VisualElement name="header-elem">
|
||||
<Style src="UdonProductsManager_Common.uss" />
|
||||
<ui:VisualElement name="logintext-elem" class="infobox error">
|
||||
<ui:Label text="You need to be logged in before fetching the details of Udon products." name="logintext-label" />
|
||||
</ui:VisualElement>
|
||||
<ui:Button text="Import/Refresh all UdonProducts" name="importrefresh-btn" />
|
||||
<ui:VisualElement name="importbrowse-elem">
|
||||
<ui:Label text="Import in..." name="importbrowse-label" />
|
||||
<ui:TextField readonly="true" focusable="false" binding-path="importPath" name="importbrowse-textfield" />
|
||||
<uie:ToolbarButton text="Browse" name="importbrowse-btn" />
|
||||
</ui:VisualElement>
|
||||
<ui:VisualElement name="sort-elem">
|
||||
<uie:ToolbarToggle focusable="false" label="Sort by Scene/Project" name="sortbyproject-btn" />
|
||||
<uie:ToolbarToggle focusable="false" label="Sort by Listings" name="sortbylistings-btn" />
|
||||
</ui:VisualElement>
|
||||
<uie:ToolbarSearchField focusable="true" name="searchbar-input" style="display: none;" />
|
||||
</ui:VisualElement>
|
||||
<ui:VisualElement name="main-elem">
|
||||
<Style src="UdonProductsManager_Common.uss" />
|
||||
<ui:ScrollView name="main-scrollview" />
|
||||
</ui:VisualElement>
|
||||
<ui:VisualElement name="footer-elem" >
|
||||
<Style src="UdonProductsManager_Common.uss" />
|
||||
<ui:VisualElement name="infobox-elem" class="infobox" style="visibility: hidden;">
|
||||
<ui:Label name="infobox-label" />
|
||||
</ui:VisualElement>
|
||||
</ui:VisualElement>
|
||||
</ui:UXML>
|
||||
@@ -0,0 +1,124 @@
|
||||
#logintext-elem {
|
||||
margin-top: 2px;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
#infobox-elem {
|
||||
width: 100%;
|
||||
min-width: 100%;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
#infobox-label {
|
||||
white-space: normal;
|
||||
justify-content: center;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.infobox {
|
||||
border-top-left-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
border-top-right-radius: 3px;
|
||||
border-bottom-right-radius: 3px;
|
||||
border-left-width: 1px;
|
||||
border-right-width: 1px;
|
||||
border-top-width: 1px;
|
||||
border-bottom-width: 1px;
|
||||
}
|
||||
|
||||
.infobox > Label {
|
||||
-unity-text-align: middle-left;
|
||||
flex-grow: 1;
|
||||
padding-left: 6px;
|
||||
}
|
||||
|
||||
#header-elem {
|
||||
padding-top: 5px;
|
||||
padding-bottom: 1px;
|
||||
padding-right: 5px;
|
||||
padding-left: 5px;
|
||||
background-color: rgba(0, 0, 0, 0.15);
|
||||
border-bottom-width: 2px;
|
||||
border-bottom-color: rgba(0, 0, 0, 0.1);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
#footer-elem {
|
||||
padding-top: 5px;
|
||||
padding-bottom: 5px;
|
||||
padding-right: 5px;
|
||||
padding-left: 5px;
|
||||
background-color: rgba(0, 0, 0, 0.15);
|
||||
border-top-width: 2px;
|
||||
border-top-color: rgba(0, 0, 0, 0.1);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
#importrefresh-btn {
|
||||
margin-right: 0;
|
||||
margin-left: 0;
|
||||
margin-top: 2px;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
#sort-elem {
|
||||
flex-direction: row;
|
||||
padding-top: 1px;
|
||||
padding-bottom: 1px;
|
||||
}
|
||||
|
||||
#sortbyproject-btn, #sortbylistings-btn
|
||||
{
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
#searchbar-input {
|
||||
width: auto;
|
||||
height: auto;
|
||||
margin-right: 0;
|
||||
margin-left: 0;
|
||||
display: none;
|
||||
}
|
||||
|
||||
#main-elem {
|
||||
height: auto;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
padding-top: 5px;
|
||||
padding-bottom: 5px;
|
||||
flex-direction: column;
|
||||
flex-grow: 1;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
#main-scrollview {
|
||||
padding-left: 5px;
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
#logintext-elem {
|
||||
margin-top: 2px;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
#importbrowse-elem {
|
||||
flex-direction: row;
|
||||
margin-top: 2px;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
#importbrowse-label {
|
||||
-unity-text-align: middle-left;
|
||||
}
|
||||
|
||||
#importbrowse-textfield {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
#footer-elem {
|
||||
min-height: 3%;
|
||||
flex-direction: column-reverse;
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
.infobox {
|
||||
border-color: rgb(35, 35, 35);
|
||||
background-color: rgba(96, 96, 96, 0.2);
|
||||
}
|
||||
|
||||
.infobox > Label {
|
||||
color: rgb(189, 189, 189);
|
||||
}
|
||||
|
||||
.infobox.warning {
|
||||
border-color: rgba(255, 215, 0, 0.5);
|
||||
background-color: rgba(255, 215, 0, 0.25);
|
||||
}
|
||||
|
||||
.infobox.warning > Label {
|
||||
color: rgb(255, 215, 0);
|
||||
}
|
||||
|
||||
.infobox.error {
|
||||
border-color: rgba(255, 0, 0, 0.5);
|
||||
background-color: rgba(255, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.infobox.error > Label {
|
||||
color: rgb(255, 100, 100);
|
||||
}
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
.infobox {
|
||||
border-color: rgba(0, 0, 0, 0.27);
|
||||
background-color: rgba(235, 235, 235, 0.2);
|
||||
}
|
||||
|
||||
.infobox > Label {
|
||||
color: rgba(22, 22, 22, 255);
|
||||
}
|
||||
|
||||
.infobox.warning {
|
||||
border-color: rgba(255, 215, 0, 0.5);
|
||||
background-color: rgba(255, 215, 0, 0.25);
|
||||
}
|
||||
|
||||
.infobox.warning > Label {
|
||||
color: rgb(255, 255, 200);
|
||||
}
|
||||
|
||||
.infobox.error {
|
||||
border-color: rgba(255, 0, 0, 0.5);
|
||||
background-color: rgba(255, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.infobox.error > Label {
|
||||
color: rgb(166, 28, 28);
|
||||
}
|
||||
@@ -0,0 +1,701 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!29 &1
|
||||
OcclusionCullingSettings:
|
||||
m_ObjectHideFlags: 0
|
||||
serializedVersion: 2
|
||||
m_OcclusionBakeSettings:
|
||||
smallestOccluder: 5
|
||||
smallestHole: 0.25
|
||||
backfaceThreshold: 100
|
||||
m_SceneGUID: 00000000000000000000000000000000
|
||||
m_OcclusionCullingData: {fileID: 0}
|
||||
--- !u!104 &2
|
||||
RenderSettings:
|
||||
m_ObjectHideFlags: 0
|
||||
serializedVersion: 9
|
||||
m_Fog: 0
|
||||
m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
||||
m_FogMode: 3
|
||||
m_FogDensity: 0.01
|
||||
m_LinearFogStart: 0
|
||||
m_LinearFogEnd: 300
|
||||
m_AmbientSkyColor: {r: 0.6037736, g: 0.6037736, b: 0.6037736, a: 1}
|
||||
m_AmbientEquatorColor: {r: 0.3542186, g: 0.36578855, b: 0.3773585, a: 1}
|
||||
m_AmbientGroundColor: {r: 0.1981132, g: 0.19344072, b: 0.18409576, a: 1}
|
||||
m_AmbientIntensity: 1
|
||||
m_AmbientMode: 1
|
||||
m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}
|
||||
m_SkyboxMaterial: {fileID: 2100000, guid: 21221da753878694b9b9518a540dda85, type: 2}
|
||||
m_HaloStrength: 0.5
|
||||
m_FlareStrength: 1
|
||||
m_FlareFadeSpeed: 3
|
||||
m_HaloTexture: {fileID: 0}
|
||||
m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0}
|
||||
m_DefaultReflectionMode: 0
|
||||
m_DefaultReflectionResolution: 128
|
||||
m_ReflectionBounces: 1
|
||||
m_ReflectionIntensity: 1
|
||||
m_CustomReflection: {fileID: 0}
|
||||
m_Sun: {fileID: 0}
|
||||
m_IndirectSpecularColor: {r: 0.3322065, g: 0.3627174, b: 0.46474278, a: 1}
|
||||
m_UseRadianceAmbientProbe: 0
|
||||
--- !u!157 &3
|
||||
LightmapSettings:
|
||||
m_ObjectHideFlags: 0
|
||||
serializedVersion: 12
|
||||
m_GIWorkflowMode: 1
|
||||
m_GISettings:
|
||||
serializedVersion: 2
|
||||
m_BounceScale: 1
|
||||
m_IndirectOutputScale: 1
|
||||
m_AlbedoBoost: 1
|
||||
m_EnvironmentLightingMode: 0
|
||||
m_EnableBakedLightmaps: 1
|
||||
m_EnableRealtimeLightmaps: 1
|
||||
m_LightmapEditorSettings:
|
||||
serializedVersion: 12
|
||||
m_Resolution: 2
|
||||
m_BakeResolution: 40
|
||||
m_AtlasSize: 1024
|
||||
m_AO: 0
|
||||
m_AOMaxDistance: 1
|
||||
m_CompAOExponent: 1
|
||||
m_CompAOExponentDirect: 0
|
||||
m_ExtractAmbientOcclusion: 0
|
||||
m_Padding: 2
|
||||
m_LightmapParameters: {fileID: 0}
|
||||
m_LightmapsBakeMode: 1
|
||||
m_TextureCompression: 1
|
||||
m_FinalGather: 0
|
||||
m_FinalGatherFiltering: 1
|
||||
m_FinalGatherRayCount: 256
|
||||
m_ReflectionCompression: 2
|
||||
m_MixedBakeMode: 2
|
||||
m_BakeBackend: 1
|
||||
m_PVRSampling: 1
|
||||
m_PVRDirectSampleCount: 32
|
||||
m_PVRSampleCount: 500
|
||||
m_PVRBounces: 2
|
||||
m_PVREnvironmentSampleCount: 500
|
||||
m_PVREnvironmentReferencePointCount: 2048
|
||||
m_PVRFilteringMode: 2
|
||||
m_PVRDenoiserTypeDirect: 0
|
||||
m_PVRDenoiserTypeIndirect: 0
|
||||
m_PVRDenoiserTypeAO: 0
|
||||
m_PVRFilterTypeDirect: 0
|
||||
m_PVRFilterTypeIndirect: 0
|
||||
m_PVRFilterTypeAO: 0
|
||||
m_PVREnvironmentMIS: 0
|
||||
m_PVRCulling: 1
|
||||
m_PVRFilteringGaussRadiusDirect: 1
|
||||
m_PVRFilteringGaussRadiusIndirect: 5
|
||||
m_PVRFilteringGaussRadiusAO: 2
|
||||
m_PVRFilteringAtrousPositionSigmaDirect: 0.5
|
||||
m_PVRFilteringAtrousPositionSigmaIndirect: 2
|
||||
m_PVRFilteringAtrousPositionSigmaAO: 1
|
||||
m_ExportTrainingData: 0
|
||||
m_TrainingDataDestination: TrainingData
|
||||
m_LightProbeSampleCountMultiplier: 4
|
||||
m_LightingDataAsset: {fileID: 112000000, guid: 93758136d0b55324482fcfce76a34bff,
|
||||
type: 2}
|
||||
m_LightingSettings: {fileID: 4890085278179872738, guid: 7774fab823fc47d4283c662c6d671e8d,
|
||||
type: 2}
|
||||
--- !u!196 &4
|
||||
NavMeshSettings:
|
||||
serializedVersion: 2
|
||||
m_ObjectHideFlags: 0
|
||||
m_BuildSettings:
|
||||
serializedVersion: 3
|
||||
agentTypeID: 0
|
||||
agentRadius: 0.5
|
||||
agentHeight: 2
|
||||
agentSlope: 45
|
||||
agentClimb: 0.4
|
||||
ledgeDropHeight: 0
|
||||
maxJumpAcrossDistance: 0
|
||||
minRegionArea: 2
|
||||
manualCellSize: 0
|
||||
cellSize: 0.16666667
|
||||
manualTileSize: 0
|
||||
tileSize: 256
|
||||
buildHeightMesh: 0
|
||||
maxJobWorkers: 0
|
||||
preserveTilesOutsideBounds: 0
|
||||
debug:
|
||||
m_Flags: 0
|
||||
m_NavMeshData: {fileID: 0}
|
||||
--- !u!1 &358170787
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 358170790}
|
||||
- component: {fileID: 358170789}
|
||||
- component: {fileID: 358170788}
|
||||
m_Layer: 0
|
||||
m_Name: EventSystem
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!114 &358170788
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 358170787}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 4f231c4fb786f3946a6b90b886c48677, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
m_SendPointerHoverToParent: 1
|
||||
m_HorizontalAxis: Horizontal
|
||||
m_VerticalAxis: Vertical
|
||||
m_SubmitButton: Submit
|
||||
m_CancelButton: Cancel
|
||||
m_InputActionsPerSecond: 10
|
||||
m_RepeatDelay: 0.5
|
||||
m_ForceModuleActive: 0
|
||||
--- !u!114 &358170789
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 358170787}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
m_FirstSelected: {fileID: 0}
|
||||
m_sendNavigationEvents: 1
|
||||
m_DragThreshold: 10
|
||||
--- !u!4 &358170790
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 358170787}
|
||||
serializedVersion: 2
|
||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_ConstrainProportionsScale: 0
|
||||
m_Children: []
|
||||
m_Father: {fileID: 0}
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!1 &1069902874
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 1069902877}
|
||||
- component: {fileID: 1069902876}
|
||||
- component: {fileID: 1069902875}
|
||||
m_Layer: 0
|
||||
m_Name: Main Camera
|
||||
m_TagString: MainCamera
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!81 &1069902875
|
||||
AudioListener:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1069902874}
|
||||
m_Enabled: 1
|
||||
--- !u!20 &1069902876
|
||||
Camera:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1069902874}
|
||||
m_Enabled: 1
|
||||
serializedVersion: 2
|
||||
m_ClearFlags: 1
|
||||
m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0}
|
||||
m_projectionMatrixMode: 1
|
||||
m_GateFitMode: 2
|
||||
m_FOVAxisMode: 0
|
||||
m_Iso: 200
|
||||
m_ShutterSpeed: 0.005
|
||||
m_Aperture: 16
|
||||
m_FocusDistance: 10
|
||||
m_FocalLength: 50
|
||||
m_BladeCount: 5
|
||||
m_Curvature: {x: 2, y: 11}
|
||||
m_BarrelClipping: 0.25
|
||||
m_Anamorphism: 0
|
||||
m_SensorSize: {x: 36, y: 24}
|
||||
m_LensShift: {x: 0, y: 0}
|
||||
m_NormalizedViewPortRect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 1
|
||||
height: 1
|
||||
near clip plane: 0.3
|
||||
far clip plane: 1000
|
||||
field of view: 60
|
||||
orthographic: 0
|
||||
orthographic size: 5
|
||||
m_Depth: -1
|
||||
m_CullingMask:
|
||||
serializedVersion: 2
|
||||
m_Bits: 4294967295
|
||||
m_RenderingPath: -1
|
||||
m_TargetTexture: {fileID: 0}
|
||||
m_TargetDisplay: 0
|
||||
m_TargetEye: 3
|
||||
m_HDR: 1
|
||||
m_AllowMSAA: 1
|
||||
m_AllowDynamicResolution: 0
|
||||
m_ForceIntoRT: 0
|
||||
m_OcclusionCulling: 1
|
||||
m_StereoConvergence: 10
|
||||
m_StereoSeparation: 0.022
|
||||
--- !u!4 &1069902877
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1069902874}
|
||||
serializedVersion: 2
|
||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 1.5, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_ConstrainProportionsScale: 0
|
||||
m_Children: []
|
||||
m_Father: {fileID: 0}
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!1 &1787983409
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 1787983411}
|
||||
- component: {fileID: 1787983410}
|
||||
m_Layer: 0
|
||||
m_Name: Directional Light
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!108 &1787983410
|
||||
Light:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1787983409}
|
||||
m_Enabled: 1
|
||||
serializedVersion: 10
|
||||
m_Type: 1
|
||||
m_Shape: 0
|
||||
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
m_Intensity: 1
|
||||
m_Range: 10
|
||||
m_SpotAngle: 30
|
||||
m_InnerSpotAngle: 21.80208
|
||||
m_CookieSize: 10
|
||||
m_Shadows:
|
||||
m_Type: 2
|
||||
m_Resolution: -1
|
||||
m_CustomResolution: -1
|
||||
m_Strength: 1
|
||||
m_Bias: 0.05
|
||||
m_NormalBias: 0.4
|
||||
m_NearPlane: 0.2
|
||||
m_CullingMatrixOverride:
|
||||
e00: 1
|
||||
e01: 0
|
||||
e02: 0
|
||||
e03: 0
|
||||
e10: 0
|
||||
e11: 1
|
||||
e12: 0
|
||||
e13: 0
|
||||
e20: 0
|
||||
e21: 0
|
||||
e22: 1
|
||||
e23: 0
|
||||
e30: 0
|
||||
e31: 0
|
||||
e32: 0
|
||||
e33: 1
|
||||
m_UseCullingMatrixOverride: 0
|
||||
m_Cookie: {fileID: 0}
|
||||
m_DrawHalo: 0
|
||||
m_Flare: {fileID: 0}
|
||||
m_RenderMode: 0
|
||||
m_CullingMask:
|
||||
serializedVersion: 2
|
||||
m_Bits: 4294967295
|
||||
m_RenderingLayerMask: 1
|
||||
m_Lightmapping: 4
|
||||
m_LightShadowCasterMode: 0
|
||||
m_AreaSize: {x: 1, y: 1}
|
||||
m_BounceIntensity: 1
|
||||
m_ColorTemperature: 6570
|
||||
m_UseColorTemperature: 0
|
||||
m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0}
|
||||
m_UseBoundingSphereOverride: 0
|
||||
m_UseViewFrustumForShadowCasterCull: 1
|
||||
m_ShadowRadius: 0
|
||||
m_ShadowAngle: 0
|
||||
--- !u!4 &1787983411
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1787983409}
|
||||
serializedVersion: 2
|
||||
m_LocalRotation: {x: 0.73976463, y: 0.34240803, z: 0.05048304, w: 0.5770238}
|
||||
m_LocalPosition: {x: 0, y: 6, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_ConstrainProportionsScale: 0
|
||||
m_Children: []
|
||||
m_Father: {fileID: 0}
|
||||
m_LocalEulerAnglesHint: {x: 55, y: 125, z: 100}
|
||||
--- !u!114 &3231720197660963110
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 3480278762663670689}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 45115577ef41a5b4ca741ed302693907, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
interactTextPlacement: {fileID: 0}
|
||||
interactText: Use
|
||||
interactTextGO: {fileID: 0}
|
||||
proximity: 2
|
||||
SynchronizePosition: 0
|
||||
AllowCollisionOwnershipTransfer: 0
|
||||
Reliable: 0
|
||||
_syncMethod: 1
|
||||
serializedProgramAsset: {fileID: 11400000, guid: 21a13e0a0a257474f97830fdcc78b27e,
|
||||
type: 2}
|
||||
programSource: {fileID: 11400000, guid: c8df303ceb45ae84f85a11591f741734, type: 2}
|
||||
serializedPublicVariablesBytesString: Ai8AAAAAATIAAABWAFIAQwAuAFUAZABvAG4ALgBDAG8AbQBtAG8AbgAuAFUAZABvAG4AVgBhAHIAaQBhAGIAbABlAFQAYQBiAGwAZQAsACAAVgBSAEMALgBVAGQAbwBuAC4AQwBvAG0AbQBvAG4AAAAAAAYBAAAAAAAAACcBBAAAAHQAeQBwAGUAAWgAAABTAHkAcwB0AGUAbQAuAEMAbwBsAGwAZQBjAHQAaQBvAG4AcwAuAEcAZQBuAGUAcgBpAGMALgBMAGkAcwB0AGAAMQBbAFsAVgBSAEMALgBVAGQAbwBuAC4AQwBvAG0AbQBvAG4ALgBJAG4AdABlAHIAZgBhAGMAZQBzAC4ASQBVAGQAbwBuAFYAYQByAGkAYQBiAGwAZQAsACAAVgBSAEMALgBVAGQAbwBuAC4AQwBvAG0AbQBvAG4AXQBdACwAIABtAHMAYwBvAHIAbABpAGIAAQEJAAAAVgBhAHIAaQBhAGIAbABlAHMALwEAAAABaAAAAFMAeQBzAHQAZQBtAC4AQwBvAGwAbABlAGMAdABpAG8AbgBzAC4ARwBlAG4AZQByAGkAYwAuAEwAaQBzAHQAYAAxAFsAWwBWAFIAQwAuAFUAZABvAG4ALgBDAG8AbQBtAG8AbgAuAEkAbgB0AGUAcgBmAGEAYwBlAHMALgBJAFUAZABvAG4AVgBhAHIAaQBhAGIAbABlACwAIABWAFIAQwAuAFUAZABvAG4ALgBDAG8AbQBtAG8AbgBdAF0ALAAgAG0AcwBjAG8AcgBsAGkAYgABAAAABgQAAAAAAAAAAi8CAAAAAUoAAABWAFIAQwAuAFUAZABvAG4ALgBDAG8AbQBtAG8AbgAuAFUAZABvAG4AVgBhAHIAaQBhAGIAbABlAGAAMQBbAFsAUwB5AHMAdABlAG0ALgBTAGkAbgBnAGwAZQAsACAAbQBzAGMAbwByAGwAaQBiAF0AXQAsACAAVgBSAEMALgBVAGQAbwBuAC4AQwBvAG0AbQBvAG4AAgAAAAYCAAAAAAAAACcBBAAAAHQAeQBwAGUAARcAAABTAHkAcwB0AGUAbQAuAFMAdAByAGkAbgBnACwAIABtAHMAYwBvAHIAbABpAGIAJwEKAAAAUwB5AG0AYgBvAGwATgBhAG0AZQABCwAAAGoAdQBtAHAASQBtAHAAdQBsAHMAZQAnAQQAAAB0AHkAcABlAAEXAAAAUwB5AHMAdABlAG0ALgBTAGkAbgBnAGwAZQAsACAAbQBzAGMAbwByAGwAaQBiAB8BBQAAAFYAYQBsAHUAZQAAAEBABwUCMAIAAAADAAAABgIAAAAAAAAAJwEEAAAAdAB5AHAAZQABFwAAAFMAeQBzAHQAZQBtAC4AUwB0AHIAaQBuAGcALAAgAG0AcwBjAG8AcgBsAGkAYgAnAQoAAABTAHkAbQBiAG8AbABOAGEAbQBlAAEJAAAAdwBhAGwAawBTAHAAZQBlAGQAJwEEAAAAdAB5AHAAZQABFwAAAFMAeQBzAHQAZQBtAC4AUwBpAG4AZwBsAGUALAAgAG0AcwBjAG8AcgBsAGkAYgAfAQUAAABWAGEAbAB1AGUAAAAAQAcFAjACAAAABAAAAAYCAAAAAAAAACcBBAAAAHQAeQBwAGUAARcAAABTAHkAcwB0AGUAbQAuAFMAdAByAGkAbgBnACwAIABtAHMAYwBvAHIAbABpAGIAJwEKAAAAUwB5AG0AYgBvAGwATgBhAG0AZQABCAAAAHIAdQBuAFMAcABlAGUAZAAnAQQAAAB0AHkAcABlAAEXAAAAUwB5AHMAdABlAG0ALgBTAGkAbgBnAGwAZQAsACAAbQBzAGMAbwByAGwAaQBiAB8BBQAAAFYAYQBsAHUAZQAAAIBABwUCMAIAAAAFAAAABgIAAAAAAAAAJwEEAAAAdAB5AHAAZQABFwAAAFMAeQBzAHQAZQBtAC4AUwB0AHIAaQBuAGcALAAgAG0AcwBjAG8AcgBsAGkAYgAnAQoAAABTAHkAbQBiAG8AbABOAGEAbQBlAAELAAAAcwB0AHIAYQBmAGUAUwBwAGUAZQBkACcBBAAAAHQAeQBwAGUAARcAAABTAHkAcwB0AGUAbQAuAFMAaQBuAGcAbABlACwAIABtAHMAYwBvAHIAbABpAGIAHwEFAAAAVgBhAGwAdQBlAAAAAEAHBQcFBwU=
|
||||
publicVariablesUnityEngineObjects: []
|
||||
publicVariablesSerializationDataFormat: 0
|
||||
--- !u!4 &3480278762663400089
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 3480278762663670689}
|
||||
serializedVersion: 2
|
||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: -2.558}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_ConstrainProportionsScale: 0
|
||||
m_Children: []
|
||||
m_Father: {fileID: 0}
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!1 &3480278762663670689
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 3480278762663400089}
|
||||
- component: {fileID: 7111575897785925491}
|
||||
- component: {fileID: 3591906996255472209}
|
||||
- component: {fileID: 3231720197660963110}
|
||||
- component: {fileID: 3480278762663670690}
|
||||
m_Layer: 0
|
||||
m_Name: VRCWorld
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!114 &3480278762663670690
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 3480278762663670689}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 45115577ef41a5b4ca741ed302693907, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
interactTextPlacement: {fileID: 0}
|
||||
interactText: Use
|
||||
interactTextGO: {fileID: 0}
|
||||
proximity: 2
|
||||
SynchronizePosition: 0
|
||||
AllowCollisionOwnershipTransfer: 1
|
||||
Reliable: 0
|
||||
_syncMethod: 1
|
||||
serializedProgramAsset: {fileID: 11400000, guid: a82912e628ffbe845afde2e220e1a277,
|
||||
type: 2}
|
||||
programSource: {fileID: 11400000, guid: 566cc00e27d5822449529a3785eae366, type: 2}
|
||||
serializedPublicVariablesBytesString: Ai8AAAAAATIAAABWAFIAQwAuAFUAZABvAG4ALgBDAG8AbQBtAG8AbgAuAFUAZABvAG4AVgBhAHIAaQBhAGIAbABlAFQAYQBiAGwAZQAsACAAVgBSAEMALgBVAGQAbwBuAC4AQwBvAG0AbQBvAG4AAAAAAAYBAAAAAAAAACcBBAAAAHQAeQBwAGUAAWgAAABTAHkAcwB0AGUAbQAuAEMAbwBsAGwAZQBjAHQAaQBvAG4AcwAuAEcAZQBuAGUAcgBpAGMALgBMAGkAcwB0AGAAMQBbAFsAVgBSAEMALgBVAGQAbwBuAC4AQwBvAG0AbQBvAG4ALgBJAG4AdABlAHIAZgBhAGMAZQBzAC4ASQBVAGQAbwBuAFYAYQByAGkAYQBiAGwAZQAsACAAVgBSAEMALgBVAGQAbwBuAC4AQwBvAG0AbQBvAG4AXQBdACwAIABtAHMAYwBvAHIAbABpAGIAAQEJAAAAVgBhAHIAaQBhAGIAbABlAHMALwEAAAABaAAAAFMAeQBzAHQAZQBtAC4AQwBvAGwAbABlAGMAdABpAG8AbgBzAC4ARwBlAG4AZQByAGkAYwAuAEwAaQBzAHQAYAAxAFsAWwBWAFIAQwAuAFUAZABvAG4ALgBDAG8AbQBtAG8AbgAuAEkAbgB0AGUAcgBmAGEAYwBlAHMALgBJAFUAZABvAG4AVgBhAHIAaQBhAGIAbABlACwAIABWAFIAQwAuAFUAZABvAG4ALgBDAG8AbQBtAG8AbgBdAF0ALAAgAG0AcwBjAG8AcgBsAGkAYgABAAAABgQAAAAAAAAAAi8CAAAAAUsAAABWAFIAQwAuAFUAZABvAG4ALgBDAG8AbQBtAG8AbgAuAFUAZABvAG4AVgBhAHIAaQBhAGIAbABlAGAAMQBbAFsAUwB5AHMAdABlAG0ALgBCAG8AbwBsAGUAYQBuACwAIABtAHMAYwBvAHIAbABpAGIAXQBdACwAIABWAFIAQwAuAFUAZABvAG4ALgBDAG8AbQBtAG8AbgACAAAABgIAAAAAAAAAJwEEAAAAdAB5AHAAZQABFwAAAFMAeQBzAHQAZQBtAC4AUwB0AHIAaQBuAGcALAAgAG0AcwBjAG8AcgBsAGkAYgAnAQoAAABTAHkAbQBiAG8AbABOAGEAbQBlAAEUAAAAZABpAHMAYQBiAGwAZQBBAHYAYQB0AGEAcgBTAGMAYQBsAGkAbgBnACcBBAAAAHQAeQBwAGUAARgAAABTAHkAcwB0AGUAbQAuAEIAbwBvAGwAZQBhAG4ALAAgAG0AcwBjAG8AcgBsAGkAYgArAQUAAABWAGEAbAB1AGUAAAcFAjACAAAAAwAAAAYCAAAAAAAAACcBBAAAAHQAeQBwAGUAARcAAABTAHkAcwB0AGUAbQAuAFMAdAByAGkAbgBnACwAIABtAHMAYwBvAHIAbABpAGIAJwEKAAAAUwB5AG0AYgBvAGwATgBhAG0AZQABEwAAAGEAbAB3AGEAeQBzAEUAbgBmAG8AcgBjAGUASABlAGkAZwBoAHQAJwEEAAAAdAB5AHAAZQABGAAAAFMAeQBzAHQAZQBtAC4AQgBvAG8AbABlAGEAbgAsACAAbQBzAGMAbwByAGwAaQBiACsBBQAAAFYAYQBsAHUAZQAABwUCLwMAAAABSgAAAFYAUgBDAC4AVQBkAG8AbgAuAEMAbwBtAG0AbwBuAC4AVQBkAG8AbgBWAGEAcgBpAGEAYgBsAGUAYAAxAFsAWwBTAHkAcwB0AGUAbQAuAFMAaQBuAGcAbABlACwAIABtAHMAYwBvAHIAbABpAGIAXQBdACwAIABWAFIAQwAuAFUAZABvAG4ALgBDAG8AbQBtAG8AbgAEAAAABgIAAAAAAAAAJwEEAAAAdAB5AHAAZQABFwAAAFMAeQBzAHQAZQBtAC4AUwB0AHIAaQBuAGcALAAgAG0AcwBjAG8AcgBsAGkAYgAnAQoAAABTAHkAbQBiAG8AbABOAGEAbQBlAAENAAAAbQBpAG4AaQBtAHUAbQBIAGUAaQBnAGgAdAAnAQQAAAB0AHkAcABlAAEXAAAAUwB5AHMAdABlAG0ALgBTAGkAbgBnAGwAZQAsACAAbQBzAGMAbwByAGwAaQBiAB8BBQAAAFYAYQBsAHUAZQDNzEw+BwUCMAMAAAAFAAAABgIAAAAAAAAAJwEEAAAAdAB5AHAAZQABFwAAAFMAeQBzAHQAZQBtAC4AUwB0AHIAaQBuAGcALAAgAG0AcwBjAG8AcgBsAGkAYgAnAQoAAABTAHkAbQBiAG8AbABOAGEAbQBlAAENAAAAbQBhAHgAaQBtAHUAbQBIAGUAaQBnAGgAdAAnAQQAAAB0AHkAcABlAAEXAAAAUwB5AHMAdABlAG0ALgBTAGkAbgBnAGwAZQAsACAAbQBzAGMAbwByAGwAaQBiAB8BBQAAAFYAYQBsAHUAZQAAAKBABwUHBQcF
|
||||
publicVariablesUnityEngineObjects: []
|
||||
publicVariablesSerializationDataFormat: 0
|
||||
--- !u!114 &3591906996255472209
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 3480278762663670689}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: -1427037861, guid: 4ecd63eff847044b68db9453ce219299, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
launchedFromSDKPipeline: 0
|
||||
completedSDKPipeline: 0
|
||||
blueprintId:
|
||||
contentType: 1
|
||||
assetBundleUnityVersion:
|
||||
fallbackStatus: 0
|
||||
--- !u!114 &7111575897785925491
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 3480278762663670689}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: -17141911, guid: 661092b4961be7145bfbe56e1e62337b, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
spawns:
|
||||
- {fileID: 3480278762663400089}
|
||||
spawnRadius: 0.2
|
||||
spawnOrder: 2
|
||||
spawnOrientation: 0
|
||||
ReferenceCamera: {fileID: 1069902874}
|
||||
RespawnHeightY: -100
|
||||
ObjectBehaviourAtRespawnHeight: 0
|
||||
ForbidUserPortals: 0
|
||||
interactThruLayers: 0
|
||||
autoSpatializeAudioSources: 0
|
||||
gravity: {x: 0, y: -9.81, z: 0}
|
||||
layerCollisionArr: 01010101010001010101010100010001010101010101010101010101010101010101010101000101010101010001000101010101010101010101010101010101010101010100010101010101000100010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101000101010101010001000101010101010101010101010101010101000000010000010100000000000000000000000000000101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010100010101010101000100010101010101010101010101010101010101010101010001010100000100000000000001010101010101010101010101010101010101000101010000010000000000000101010101010101010101010101010101010100010101010101000100010101010101010101010101010101010100000001000001010000000000000000000000000000010101010101010101010101010101000101010000010001010101010000000001010101010101010101000000010000010100000000000100000000000000000101010101010101010101010101010001010100000100010001010101010101010101010101010101010101010101000101010000010001000101010101010101010101010101010101010101010100010101000001000100010101010101010101010101010101010101010101010001010101010100000001010101010101010101010101010101010101010101000101010101010000000101010101010101010101010101010101010101010100010101010101000000010101010101010101010101010101010101010101010001010101010100000001010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101
|
||||
capacity: 0
|
||||
contentSex: 0
|
||||
contentViolence: 0
|
||||
contentGore: 0
|
||||
contentOther: 0
|
||||
releasePublic: 0
|
||||
unityVersion: 2019.4.31f1
|
||||
udonProducts: []
|
||||
Name:
|
||||
NSFW: 0
|
||||
SpawnPosition: {x: 0, y: 0, z: 0}
|
||||
SpawnLocation: {fileID: 0}
|
||||
DrawDistance: 0
|
||||
useAssignedLayers: 0
|
||||
DynamicPrefabs: []
|
||||
DynamicMaterials:
|
||||
- {fileID: 2100000, guid: 74de320d298ce3e498b0401ec1ffcb7f, type: 2}
|
||||
- {fileID: 2100000, guid: 1c987494452b85f4ab4cac3322415907, type: 2}
|
||||
- {fileID: 2100000, guid: c815f7613a04b724089c206857e57c6a, type: 2}
|
||||
- {fileID: 2100000, guid: fd20e45036ef323459e8286e9c23c02c, type: 2}
|
||||
LightMapsNear: []
|
||||
LightMapsFar: []
|
||||
LightMode: 0
|
||||
RenderAmbientEquatorColor: {r: 0, g: 0, b: 0, a: 0}
|
||||
RenderAmbientGroundColor: {r: 0, g: 0, b: 0, a: 0}
|
||||
RenderAmbientIntensity: 0
|
||||
RenderAmbientLight: {r: 0, g: 0, b: 0, a: 0}
|
||||
RenderAmbientMode: 0
|
||||
RenderAmbientProbe:
|
||||
sh[ 0]: 0
|
||||
sh[ 1]: 0
|
||||
sh[ 2]: 0
|
||||
sh[ 3]: 0
|
||||
sh[ 4]: 0
|
||||
sh[ 5]: 0
|
||||
sh[ 6]: 0
|
||||
sh[ 7]: 0
|
||||
sh[ 8]: 0
|
||||
sh[ 9]: 0
|
||||
sh[10]: 0
|
||||
sh[11]: 0
|
||||
sh[12]: 0
|
||||
sh[13]: 0
|
||||
sh[14]: 0
|
||||
sh[15]: 0
|
||||
sh[16]: 0
|
||||
sh[17]: 0
|
||||
sh[18]: 0
|
||||
sh[19]: 0
|
||||
sh[20]: 0
|
||||
sh[21]: 0
|
||||
sh[22]: 0
|
||||
sh[23]: 0
|
||||
sh[24]: 0
|
||||
sh[25]: 0
|
||||
sh[26]: 0
|
||||
RenderAmbientSkyColor: {r: 0, g: 0, b: 0, a: 0}
|
||||
RenderFog: 0
|
||||
RenderFogColor: {r: 0, g: 0, b: 0, a: 0}
|
||||
RenderFogMode: 0
|
||||
RenderFogDensity: 0
|
||||
RenderFogLinearStart: 0
|
||||
RenderFogLinearEnd: 0
|
||||
RenderHaloStrength: 0
|
||||
RenderFlareFadeSpeed: 0
|
||||
RenderFlareStrength: 0
|
||||
RenderCustomReflection: {fileID: 0}
|
||||
RenderDefaultReflectionMode: 0
|
||||
RenderDefaultReflectionResolution: 0
|
||||
RenderReflectionBounces: 0
|
||||
RenderReflectionIntensity: 0
|
||||
RenderSkybox: {fileID: 0}
|
||||
portraitCameraPositionOffset: {x: 0, y: 0, z: 0}
|
||||
portraitCameraRotationOffset: {x: 0, y: 1, z: 0, w: -0.00000004371139}
|
||||
PlayerPersistence: []
|
||||
--- !u!64 &7606902903243430482
|
||||
MeshCollider:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 7606902903243430483}
|
||||
m_Material: {fileID: 0}
|
||||
m_IncludeLayers:
|
||||
serializedVersion: 2
|
||||
m_Bits: 0
|
||||
m_ExcludeLayers:
|
||||
serializedVersion: 2
|
||||
m_Bits: 0
|
||||
m_LayerOverridePriority: 0
|
||||
m_IsTrigger: 0
|
||||
m_ProvidesContacts: 0
|
||||
m_Enabled: 1
|
||||
serializedVersion: 5
|
||||
m_Convex: 0
|
||||
m_CookingOptions: 30
|
||||
m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0}
|
||||
--- !u!1 &7606902903243430483
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 7606902903243430487}
|
||||
- component: {fileID: 7606902903243430484}
|
||||
- component: {fileID: 7606902903243430485}
|
||||
- component: {fileID: 7606902903243430482}
|
||||
m_Layer: 0
|
||||
m_Name: Floor
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!33 &7606902903243430484
|
||||
MeshFilter:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 7606902903243430483}
|
||||
m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0}
|
||||
--- !u!23 &7606902903243430485
|
||||
MeshRenderer:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 7606902903243430483}
|
||||
m_Enabled: 1
|
||||
m_CastShadows: 1
|
||||
m_ReceiveShadows: 1
|
||||
m_DynamicOccludee: 1
|
||||
m_StaticShadowCaster: 0
|
||||
m_MotionVectors: 1
|
||||
m_LightProbeUsage: 1
|
||||
m_ReflectionProbeUsage: 1
|
||||
m_RayTracingMode: 2
|
||||
m_RayTraceProcedural: 0
|
||||
m_RenderingLayerMask: 1
|
||||
m_RendererPriority: 0
|
||||
m_Materials:
|
||||
- {fileID: 2100000, guid: fd20e45036ef323459e8286e9c23c02c, type: 2}
|
||||
m_StaticBatchInfo:
|
||||
firstSubMesh: 0
|
||||
subMeshCount: 0
|
||||
m_StaticBatchRoot: {fileID: 0}
|
||||
m_ProbeAnchor: {fileID: 0}
|
||||
m_LightProbeVolumeOverride: {fileID: 0}
|
||||
m_ScaleInLightmap: 1
|
||||
m_ReceiveGI: 1
|
||||
m_PreserveUVs: 0
|
||||
m_IgnoreNormalsForChartDetection: 0
|
||||
m_ImportantGI: 0
|
||||
m_StitchLightmapSeams: 0
|
||||
m_SelectedEditorRenderState: 3
|
||||
m_MinimumChartSize: 4
|
||||
m_AutoUVMaxDistance: 0.5
|
||||
m_AutoUVMaxAngle: 89
|
||||
m_LightmapParameters: {fileID: 0}
|
||||
m_SortingLayerID: 0
|
||||
m_SortingLayer: 0
|
||||
m_SortingOrder: 0
|
||||
m_AdditionalVertexStreams: {fileID: 0}
|
||||
--- !u!4 &7606902903243430487
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 7606902903243430483}
|
||||
serializedVersion: 2
|
||||
m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 100, y: 100, z: 1}
|
||||
m_ConstrainProportionsScale: 0
|
||||
m_Children: []
|
||||
m_Father: {fileID: 0}
|
||||
m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0}
|
||||
--- !u!1660057539 &9223372036854775807
|
||||
SceneRoots:
|
||||
m_ObjectHideFlags: 0
|
||||
m_Roots:
|
||||
- {fileID: 3480278762663400089}
|
||||
- {fileID: 1069902877}
|
||||
- {fileID: 1787983411}
|
||||
- {fileID: 7606902903243430487}
|
||||
- {fileID: 358170790}
|
||||
@@ -0,0 +1,90 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: VRCSuperSampledUIMaterial
|
||||
m_Shader: {fileID: 4800000, guid: 44c1b7c3827912f45b473dbe106c1ecf, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords: []
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _BumpScale: 1
|
||||
- _ColorMask: 15
|
||||
- _Cutoff: 0.5
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DstBlend: 0
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0.5
|
||||
- _GlossyReflections: 1
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _Parallax: 0.02
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _Stencil: 0
|
||||
- _StencilComp: 8
|
||||
- _StencilOp: 0
|
||||
- _StencilReadMask: 255
|
||||
- _StencilWriteMask: 255
|
||||
- _UVSec: 0
|
||||
- _UseUIAlphaClip: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
@@ -0,0 +1 @@
|
||||
# ClientSim Overview
|
||||
@@ -0,0 +1,304 @@
|
||||
.content {
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
.menu-buttons {
|
||||
align-items: flex-start;
|
||||
justify-content: flex-start;
|
||||
flex-direction: row;
|
||||
flex-wrap: nowrap;
|
||||
align-self: auto;
|
||||
position: relative;
|
||||
top: auto;
|
||||
left: auto;
|
||||
width: 150px;
|
||||
height: 40px;
|
||||
padding-left: 0;
|
||||
padding-top: 0;
|
||||
margin-bottom: 2.5px;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.menu-button {
|
||||
height: 34px;
|
||||
width: 50px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.menu-button-open {
|
||||
background-image: resource('Icons/FolderOpen');
|
||||
-unity-background-scale-mode: scale-to-fit;
|
||||
-unity-background-image-tint-color: rgb(255, 255, 255);
|
||||
background-color: rgba(0, 0, 0, 0);
|
||||
scale: 0.75 0.75;
|
||||
width: auto;
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
.menu-button-refresh {
|
||||
background-image: resource('Icons/Refresh');
|
||||
-unity-background-scale-mode: scale-to-fit;
|
||||
-unity-background-image-tint-color: rgb(255, 255, 255);
|
||||
background-color: rgba(0, 0, 0, 0);
|
||||
scale: 0.75 0.75;
|
||||
width: auto;
|
||||
height: 30px;
|
||||
align-items: auto;
|
||||
flex-direction: column;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.menu-button-clear {
|
||||
background-image: resource('Icons/Trash');
|
||||
padding: 0;
|
||||
-unity-background-image-tint-color: rgb(255, 255, 255);
|
||||
scale: 0.5 0.5;
|
||||
background-color: rgba(0, 0, 0, 0);
|
||||
height: 30px;
|
||||
-unity-background-scale-mode: scale-to-fit;
|
||||
}
|
||||
|
||||
.menu-button-left {
|
||||
border-radius: 7px 0 0 7px;
|
||||
}
|
||||
|
||||
.menu-button-right {
|
||||
border-radius: 0 7px 7px 0;
|
||||
}
|
||||
|
||||
.menu-button-center {
|
||||
border-radius: 0 0 0 0;
|
||||
}
|
||||
|
||||
.dropdown {
|
||||
flex-direction: column;
|
||||
flex-wrap: nowrap;
|
||||
align-items: auto;
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
.dropdown-player {
|
||||
align-items: auto;
|
||||
align-self: auto;
|
||||
justify-content: flex-start;
|
||||
width: 150px;
|
||||
flex-direction: column;
|
||||
margin-right: 0;
|
||||
min-height: auto;
|
||||
min-width: auto;
|
||||
display: flex;
|
||||
visibility: visible;
|
||||
overflow: visible;
|
||||
opacity: 1;
|
||||
flex-wrap: nowrap;
|
||||
margin-left: 0;
|
||||
position: relative;
|
||||
top: auto;
|
||||
left: auto;
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
margin-top: 0;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
.dropdown-sort {
|
||||
align-items: flex-start;
|
||||
align-self: auto;
|
||||
justify-content: flex-start;
|
||||
width: 150px;
|
||||
flex-direction: row;
|
||||
margin-right: 0;
|
||||
min-height: auto;
|
||||
min-width: auto;
|
||||
display: none;
|
||||
visibility: visible;
|
||||
overflow: visible;
|
||||
opacity: 1;
|
||||
flex-wrap: nowrap;
|
||||
margin-left: 0;
|
||||
position: relative;
|
||||
top: auto;
|
||||
left: auto;
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
margin-top: 0;
|
||||
height: 30px;
|
||||
padding-top: 10px;
|
||||
}
|
||||
|
||||
.data-header {
|
||||
flex-direction: row;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.randomize-button {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
width: 150px;
|
||||
height: 30px;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.info-text {
|
||||
align-items: auto;
|
||||
display: flex;
|
||||
background-color: rgba(0, 0, 0, 0);
|
||||
-unity-background-image-tint-color: rgb(0, 0, 0);
|
||||
-unity-background-scale-mode: stretch-to-fill;
|
||||
margin-left: 0;
|
||||
padding-left: 0;
|
||||
color: rgb(173, 173, 173);
|
||||
font-size: 12px;
|
||||
margin-top: 0;
|
||||
justify-content: flex-start;
|
||||
align-self: auto;
|
||||
flex-direction: column;
|
||||
left: -8px;
|
||||
top: 1px;
|
||||
}
|
||||
|
||||
.info-icon {
|
||||
flex-grow: 1;
|
||||
width: 50px;
|
||||
flex-direction: column;
|
||||
flex-wrap: nowrap;
|
||||
align-items: auto;
|
||||
justify-content: flex-start;
|
||||
align-self: auto;
|
||||
max-width: 50px;
|
||||
-unity-background-scale-mode: scale-to-fit;
|
||||
background-image: resource('Icons/Log');
|
||||
scale: 0.8 0.8;
|
||||
}
|
||||
|
||||
.info {
|
||||
flex-grow: 1;
|
||||
flex-direction: row;
|
||||
height: 50px;
|
||||
-unity-background-image-tint-color: rgb(255, 255, 255);
|
||||
flex-wrap: nowrap;
|
||||
align-items: stretch;
|
||||
justify-content: flex-start;
|
||||
align-self: auto;
|
||||
width: 320px;
|
||||
border-left-color: rgb(0, 0, 0);
|
||||
border-right-color: rgb(0, 0, 0);
|
||||
border-top-color: rgb(0, 0, 0);
|
||||
border-bottom-color: rgb(0, 0, 0);
|
||||
border-left-width: 1px;
|
||||
border-right-width: 1px;
|
||||
border-top-width: 1px;
|
||||
border-bottom-width: 1px;
|
||||
border-radius: 5px;
|
||||
padding-top: 0;
|
||||
margin-top: 5px;
|
||||
background-color: rgb(64, 64, 64);
|
||||
-unity-background-scale-mode: scale-to-fit;
|
||||
}
|
||||
|
||||
.unity-label {
|
||||
padding-left: 100px;
|
||||
margin-left: -100px;
|
||||
}
|
||||
|
||||
.unity-base-field {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
padding-bottom: 4px;
|
||||
flex-direction: row;
|
||||
flex-wrap: nowrap;
|
||||
align-items: center;
|
||||
margin-left: 0;
|
||||
padding-top: 0;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.unity-base-field .unity-base-field {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.unity-composite-field {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: nowrap;
|
||||
align-items: auto;
|
||||
justify-content: flex-start;
|
||||
align-self: stretch;
|
||||
}
|
||||
|
||||
.unity-composite-field__field-spacer {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.scroll-view {
|
||||
height: auto;
|
||||
justify-content: flex-start;
|
||||
min-height: auto;
|
||||
margin: 0;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.scroll-view .unity-label {
|
||||
-unity-background-scale-mode: stretch-to-fill;
|
||||
left: auto;
|
||||
position: relative;
|
||||
width: 250px;
|
||||
}
|
||||
|
||||
.paging {
|
||||
flex-grow: 1;
|
||||
flex-direction: row;
|
||||
flex-wrap: nowrap;
|
||||
align-items: center;
|
||||
justify-content: flex-end;
|
||||
align-self: auto;
|
||||
border-right-width: 0;
|
||||
border-left-width: 0;
|
||||
border-top-width: 0;
|
||||
border-bottom-width: 0;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.paging .unity-label {
|
||||
width: auto;
|
||||
height: auto;
|
||||
align-items: auto;
|
||||
justify-content: flex-start;
|
||||
align-self: auto;
|
||||
flex-direction: column;
|
||||
flex-wrap: nowrap;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.paging-next {
|
||||
background-image: resource('Icons/Arrow');
|
||||
background-color: rgb(88, 88, 88);
|
||||
rotate: -90deg;
|
||||
-unity-background-scale-mode: scale-to-fit;
|
||||
-unity-background-image-tint-color: rgb(255, 255, 255);
|
||||
width: 40px;
|
||||
height: 30px;
|
||||
scale: 0.5 0.75;
|
||||
}
|
||||
|
||||
.paging-previous {
|
||||
background-color: rgb(88, 88, 88);
|
||||
background-image: resource('Icons/Arrow');
|
||||
-unity-background-scale-mode: scale-to-fit;
|
||||
rotate: 90deg;
|
||||
width: 40px;
|
||||
height: 30px;
|
||||
scale: 0.5 0.75;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.unity-composite-field__field .unity-label {
|
||||
width: 20px;
|
||||
min-width: 20px;
|
||||
max-width: 20px;
|
||||
-unity-text-align: middle-center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,31 @@
|
||||
<ui:UXML xmlns:ui="UnityEngine.UIElements" xmlns:uie="UnityEditor.UIElements" editor-extension-mode="False">
|
||||
<Style src="project://database/Packages/com.vrchat.worlds/Integrations/ClientSim/Editor/Resources/ClientSimPlayerDataWindow.uss?fileID=7433441132597879392&guid=dd10e9a97cf7d424bb40e1f5898c19c6&type=3#ClientSimPlayerDataWindow" />
|
||||
<ui:VisualElement name="Content" class="content">
|
||||
<ui:VisualElement name="MenuButtons" class="menu-buttons">
|
||||
<ui:Button parse-escape-sequences="true" display-tooltip-when-elided="true" name="OpenDataFolderButton" tooltip="Open folder containing the ClientSim PlayerData" class="menu-button menu-button-left">
|
||||
<ui:VisualElement name="OpenFolderIcon" class="menu-button-open" />
|
||||
</ui:Button>
|
||||
<ui:Button parse-escape-sequences="true" display-tooltip-when-elided="true" name="RefreshDataButton" tooltip="Refresh data - Use this after you've edited a PlayerData JSON file" class="menu-button menu-button-center">
|
||||
<ui:VisualElement name="RefreshIcon" class="menu-button-refresh" />
|
||||
</ui:Button>
|
||||
<ui:Button parse-escape-sequences="true" display-tooltip-when-elided="true" name="ClearDataButton" tooltip="Delete all ClientSim PlayerData" usage-hints="None" class="menu-button menu-button-right">
|
||||
<ui:VisualElement name="ClearIcon" class="menu-button-clear" />
|
||||
</ui:Button>
|
||||
</ui:VisualElement>
|
||||
<ui:DropdownField index="0" choices="[1] Local Player" name="PlayerDropdown" tooltip="In Edit Mode, the local player is the only option. In Play Mode, entries for any remote players that have been spawned will appear here." class="dropdown-player dropdown" />
|
||||
<ui:VisualElement name="NoDataInfo" class="info">
|
||||
<ui:VisualElement name="InfoIcon" class="info-icon" />
|
||||
<ui:Label tabindex="-1" text="PlayerData for the selected player is empty." parse-escape-sequences="true" display-tooltip-when-elided="true" name="InfoText" class="info-text" />
|
||||
</ui:VisualElement>
|
||||
<ui:VisualElement name="DataHeader" class="data-header">
|
||||
<ui:DropdownField index="0" choices="Alphabetically,Last Updated,First Added" name="SortDropdown" label="Sort by" tooltip="Sort ClientSim PlayerData" class="dropdown-sort" />
|
||||
<ui:VisualElement name="Paging" class="paging">
|
||||
<ui:Button parse-escape-sequences="true" display-tooltip-when-elided="true" name="PreviousPageButton" class="paging-previous" />
|
||||
<ui:Label tabindex="-1" text="1 / 1" parse-escape-sequences="true" display-tooltip-when-elided="true" name="PageLabel" />
|
||||
<ui:Button parse-escape-sequences="true" display-tooltip-when-elided="true" name="NextPageButton" class="paging-next" />
|
||||
</ui:VisualElement>
|
||||
</ui:VisualElement>
|
||||
<ui:Button text="Randomize Data" parse-escape-sequences="true" display-tooltip-when-elided="true" name="RandomizeButton" tooltip="Generate random PlayerData for the selected remote player based on the local player's PlayerData schema" class="randomize-button" />
|
||||
<ui:ScrollView name="PlayerDataList" mode="Vertical" class="scroll-view" />
|
||||
</ui:VisualElement>
|
||||
</ui:UXML>
|
||||
@@ -0,0 +1,84 @@
|
||||
.header {
|
||||
position: relative;
|
||||
visibility: visible;
|
||||
display: flex;
|
||||
overflow: visible;
|
||||
padding-top: 0;
|
||||
padding-bottom: 0;
|
||||
margin-bottom: 5px;
|
||||
margin-top: 10px;
|
||||
margin-left: 5px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.searchAndSort {
|
||||
width: 100%;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.search {
|
||||
flex-grow: 1;
|
||||
min-width: 100px;
|
||||
}
|
||||
|
||||
.sort {
|
||||
flex-grow: 1;
|
||||
min-width: auto;
|
||||
}
|
||||
|
||||
.scroll-view {
|
||||
margin: 0;
|
||||
padding: 10px;
|
||||
flex-grow: 1;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
padding-top: 0;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.helptext {
|
||||
align-items: stretch;
|
||||
-unity-text-align: middle-center;
|
||||
font-size: 15px;
|
||||
flex-grow: 1;
|
||||
flex-wrap: wrap;
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
.helpTextbox {
|
||||
height: auto;
|
||||
border-top-width: 1px;
|
||||
border-right-width: 1px;
|
||||
border-bottom-width: 1px;
|
||||
border-left-width: 1px;
|
||||
border-top-left-radius: 5px;
|
||||
border-top-right-radius: 5px;
|
||||
border-bottom-right-radius: 5px;
|
||||
border-bottom-left-radius: 5px;
|
||||
border-left-color: rgb(0, 0, 0);
|
||||
border-right-color: rgb(0, 0, 0);
|
||||
border-top-color: rgb(0, 0, 0);
|
||||
border-bottom-color: rgb(0, 0, 0);
|
||||
flex-grow: 0;
|
||||
margin-top: 5px;
|
||||
margin-right: 5px;
|
||||
margin-bottom: 5px;
|
||||
margin-left: 5px;
|
||||
background-color: rgb(81, 81, 81);
|
||||
flex-wrap: wrap;
|
||||
min-height: 40px;
|
||||
}
|
||||
|
||||
.paging {
|
||||
justify-content: center;
|
||||
flex-shrink: 0;
|
||||
padding-top: 5px;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
ClientSimNetworkHolderInstanceElement Button {
|
||||
padding-left: 6px;
|
||||
padding-bottom: 2px;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
<ui:UXML xmlns:ui="UnityEngine.UIElements" xmlns:uie="UnityEditor.UIElements" editor-extension-mode="True">
|
||||
<Style src="project://database/Packages/com.vrchat.worlds/Integrations/ClientSim/Editor/Resources/ClientSimPlayerObjectWindow.uss?fileID=7433441132597879392&guid=7f2b1e23097f00540a7705261726f8e9&type=3#ClientSimPlayerObjectWindow" />
|
||||
<ui:VisualElement name="Header" class="header">
|
||||
<ui:VisualElement name="SearchAndSort" class="searchAndSort">
|
||||
<ui:TextField picking-mode="Ignore" name="Search" keyboard-type="Search" class="search" />
|
||||
<ui:DropdownField label="Sort by" index="-1" choices="System.Collections.Generic.List`1[System.String]" name="Sort" class="sort" />
|
||||
</ui:VisualElement>
|
||||
<ui:DropdownField name="PlayerDropdown" class="dropdown" />
|
||||
</ui:VisualElement>
|
||||
<ui:ScrollView name="PlayerObjectList" mode="Vertical" class="scroll-view" style="overflow: hidden; display: flex; visibility: visible;" />
|
||||
<ui:VisualElement name="HelpTextBox" class="helpTextbox">
|
||||
<ui:Label tabindex="-1" text="Enter Play Mode to view PlayerObjects" parse-escape-sequences="true" display-tooltip-when-elided="true" name="HelpTextBoxLabel" class="helptext" />
|
||||
</ui:VisualElement>
|
||||
<ui:VisualElement name="Paging" class="paging" style="flex-direction: row;">
|
||||
<ui:Button text="<" parse-escape-sequences="true" display-tooltip-when-elided="true" name="Left" />
|
||||
<ui:Label tabindex="-1" text="0/5" parse-escape-sequences="true" display-tooltip-when-elided="true" name="PagingLabel" />
|
||||
<ui:Button text=">" parse-escape-sequences="true" display-tooltip-when-elided="true" name="Right" />
|
||||
</ui:VisualElement>
|
||||
</ui:UXML>
|
||||
|
After Width: | Height: | Size: 350 B |
|
After Width: | Height: | Size: 633 B |
|
After Width: | Height: | Size: 189 B |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 567 B |
11
Packages/com.vrchat.worlds/Integrations/ClientSim/License.md
Normal file
@@ -0,0 +1,11 @@
|
||||
# VRCHAT INC.
|
||||
### VRCHAT DISTRO LICENSE FILE
|
||||
Version: February 24, 2022
|
||||
|
||||
**SUMMARY OF TERMS:** Any materials subject to this Distro Asset License may be distributed by you, with or without modifications, on a non-commercial basis (i.e., at no charge), in accordance with the full terms of the Materials License Agreement.
|
||||
|
||||
This Distro License File is a "License File" as defined in the VRChat Materials License Agreement, found at https://hello.vrchat.com/legal/sdk (or any successor link designated by VRChat) (as may be revised from time to time, the "Materials License Agreement").
|
||||
|
||||
This Distro License File applies to all the files in the Folder containing this Distro License File and those in all Child Folders within that Folder (except with respect to files in any Child Folder that contains a different License File) (such files, other than this Distro License File, the "Covered Files"). All capitalized terms used but not otherwise defined in this Distro License File have the meanings provided in the Materials License Agreement.
|
||||
|
||||
This Distro License File only provides a summary of the terms applicable to the Covered Files. To understand your rights and obligations and the full set of terms that apply to use of the Covered Files, please see the relevant sections of the Materials License Agreement, including terms applicable to Distro Materials.
|
||||
61
Packages/com.vrchat.worlds/Integrations/ClientSim/README.md
Normal file
@@ -0,0 +1,61 @@
|
||||
# ClientSim
|
||||
## A VRChat Client Simulator for building Worlds
|
||||
|
||||
This tool enables you to test your VRChat SDK3 Worlds directly in Unity! You can look at the state of all objects to verify things directly.
|
||||
|
||||
## Features
|
||||
|
||||
- Debug everything in Unity.
|
||||
- Inspect Udon variables in Play Mode.
|
||||
- Desktop player controller.
|
||||
- Grab Pickups, use Interacts, UI and Stations.
|
||||
- Delete EditorOnly objects on Play.
|
||||
|
||||
### New Features in ClientSim
|
||||
- Pickup manipulation through I, J, K, L, U, O, mouse scrolling and gamepad.
|
||||
- Input based on keyboard layout instead of specific keys.
|
||||
- Local and Remote player now have humanoid avatars, avatar bones supported (but not full Avatar systems).
|
||||
- View and set player data directly - Locomotion values, voice and avatar audio settings, combat health.
|
||||
- Unlock mouse by holding tab - you can highlight off-center objects this way.
|
||||
- Pointer displays when a UI element can be interacted with.
|
||||
- New runtime options: start as non-master, invert mouse, show tooltips, change player scale, set target framerate, delay start to simulate loading.
|
||||
- New playmode menu with updated style, player info and settings buttons.
|
||||
- New buttons in the Settings Window to update Project Settings, no longer happens without user consent.
|
||||
- Mesh highlighting that matches Android.
|
||||
- Tooltip location updated to match client.
|
||||
- Better gamepad support.
|
||||
- Support for Disabled Domain Reload to enter playmode without delay - note that there is a Unity bug that causes UI Events to fail if they're not set to "Editor and Runtime".
|
||||
- Automated Testing - you need to specifically enable this so it won't affect your project. Documentation forthcoming.
|
||||
|
||||
### Known Issues
|
||||
|
||||
- Manually changing Unity Project settings to enable the new input system may not properly allow input. Users should use the buttons in the ClientSim Settings Window.
|
||||
- Physics.RaycastNonAlloc sometimes does not return colliders that have moved and do not have rigidbodies.
|
||||
- On exiting playmode may throw exceptions occasionally due to order in which objects are destroyed.
|
||||
- Highlight shader does not work on Mac (Metal).
|
||||
|
||||
## Setup
|
||||
|
||||
### Requirements
|
||||
|
||||
- Unity 2019.4.29-31
|
||||
- Package versions of [VRChat Base](https://github.com/vrchat/packages/tree/main/packages/com.vrchat.base) and [Worlds](https://github.com/vrchat/packages/tree/main/packages/com.vrchat.worlds) SDKs
|
||||
|
||||
### Installing
|
||||
|
||||
- Use the [VRChat Creator Companion](https://vcc.docs.vrchat.com) to add the package to your project from the 'Curated Packages' section
|
||||
|
||||
### Getting started
|
||||
|
||||
- Open your VRChat world scene
|
||||
- Press play in Unity
|
||||
- Test your world
|
||||
|
||||
## Copyright
|
||||
|
||||
Copyright (c) 2023 VRChat
|
||||
See License.md for full usage information
|
||||
|
||||
## Credits
|
||||
|
||||
Based on [CyanEmu](https://github.com/CyanLaser/CyanEmu) by [CyanLaser](https://github.com/CyanLaser), who also made this version.
|
||||
@@ -0,0 +1,938 @@
|
||||
{
|
||||
"name": "ClientSimInputMapping",
|
||||
"maps": [
|
||||
{
|
||||
"name": "Player",
|
||||
"id": "2f50182f-8d0e-45db-86fb-c28a4c2928c3",
|
||||
"actions": [
|
||||
{
|
||||
"name": "LookHorizontal",
|
||||
"type": "Value",
|
||||
"id": "fd5ba6df-78c4-4e25-9fd5-7e3d97cff8c1",
|
||||
"expectedControlType": "Axis",
|
||||
"processors": "",
|
||||
"interactions": ""
|
||||
},
|
||||
{
|
||||
"name": "LookVertical",
|
||||
"type": "Value",
|
||||
"id": "d9675fd8-9661-4368-984d-f6f7683fe821",
|
||||
"expectedControlType": "Axis",
|
||||
"processors": "",
|
||||
"interactions": ""
|
||||
},
|
||||
{
|
||||
"name": "MovementHorizontal",
|
||||
"type": "Value",
|
||||
"id": "c5e34fa0-7b42-436a-aac5-43719b6671e5",
|
||||
"expectedControlType": "Axis",
|
||||
"processors": "",
|
||||
"interactions": ""
|
||||
},
|
||||
{
|
||||
"name": "MovementVertical",
|
||||
"type": "Value",
|
||||
"id": "9e5c4572-7e08-413a-8992-d08e65de6588",
|
||||
"expectedControlType": "Axis",
|
||||
"processors": "",
|
||||
"interactions": ""
|
||||
},
|
||||
{
|
||||
"name": "JumpLeft",
|
||||
"type": "Button",
|
||||
"id": "4bcd4015-fce1-40e8-bac9-17c60193e8a6",
|
||||
"expectedControlType": "Button",
|
||||
"processors": "",
|
||||
"interactions": ""
|
||||
},
|
||||
{
|
||||
"name": "JumpRight",
|
||||
"type": "Button",
|
||||
"id": "e1d78f1c-246d-42ce-8dad-64769265bc40",
|
||||
"expectedControlType": "Button",
|
||||
"processors": "",
|
||||
"interactions": ""
|
||||
},
|
||||
{
|
||||
"name": "UseLeft",
|
||||
"type": "Button",
|
||||
"id": "1c0d0334-cacd-4c50-81e3-c9efb4436ccb",
|
||||
"expectedControlType": "Button",
|
||||
"processors": "",
|
||||
"interactions": ""
|
||||
},
|
||||
{
|
||||
"name": "UseRight",
|
||||
"type": "Button",
|
||||
"id": "5e78bbbe-04e6-44df-bc85-404f92936b98",
|
||||
"expectedControlType": "Button",
|
||||
"processors": "",
|
||||
"interactions": ""
|
||||
},
|
||||
{
|
||||
"name": "GrabLeft",
|
||||
"type": "Button",
|
||||
"id": "a9b3a7e3-2b29-48d1-8be7-c7a2fba1d70d",
|
||||
"expectedControlType": "Button",
|
||||
"processors": "",
|
||||
"interactions": ""
|
||||
},
|
||||
{
|
||||
"name": "GrabRight",
|
||||
"type": "Button",
|
||||
"id": "e77cb057-0a67-47a5-b73b-cf5f750feae1",
|
||||
"expectedControlType": "Button",
|
||||
"processors": "",
|
||||
"interactions": ""
|
||||
},
|
||||
{
|
||||
"name": "DropLeft",
|
||||
"type": "Button",
|
||||
"id": "5e9b0664-5568-442e-bc7b-000386ea8cb7",
|
||||
"expectedControlType": "Button",
|
||||
"processors": "",
|
||||
"interactions": ""
|
||||
},
|
||||
{
|
||||
"name": "DropRight",
|
||||
"type": "Button",
|
||||
"id": "5ae3c089-7d25-41d2-8245-78c24b806ae9",
|
||||
"expectedControlType": "Button",
|
||||
"processors": "",
|
||||
"interactions": ""
|
||||
},
|
||||
{
|
||||
"name": "ToggleMenuLeft",
|
||||
"type": "Button",
|
||||
"id": "1fe9ba51-431d-42df-b3b8-fb55b37a26d9",
|
||||
"expectedControlType": "Button",
|
||||
"processors": "",
|
||||
"interactions": ""
|
||||
},
|
||||
{
|
||||
"name": "ToggleMenuRight",
|
||||
"type": "Button",
|
||||
"id": "8a4af8b2-f882-4ae3-a6ea-f8d10c88a1f6",
|
||||
"expectedControlType": "Button",
|
||||
"processors": "",
|
||||
"interactions": ""
|
||||
},
|
||||
{
|
||||
"name": "Run",
|
||||
"type": "Button",
|
||||
"id": "e47a69fe-eadc-47da-a81f-909b6c277e00",
|
||||
"expectedControlType": "Button",
|
||||
"processors": "",
|
||||
"interactions": ""
|
||||
},
|
||||
{
|
||||
"name": "ToggleCrouch",
|
||||
"type": "Button",
|
||||
"id": "2064b4f9-486f-476d-800b-52f1208aff6c",
|
||||
"expectedControlType": "Button",
|
||||
"processors": "",
|
||||
"interactions": ""
|
||||
},
|
||||
{
|
||||
"name": "ToggleProne",
|
||||
"type": "Button",
|
||||
"id": "28ffcaeb-1d40-48b8-8ed9-593338b8e9be",
|
||||
"expectedControlType": "Button",
|
||||
"processors": "",
|
||||
"interactions": ""
|
||||
},
|
||||
{
|
||||
"name": "ReleaseMouse",
|
||||
"type": "Button",
|
||||
"id": "20ba4d98-6df4-4d39-aab4-5a0b170f1526",
|
||||
"expectedControlType": "Button",
|
||||
"processors": "",
|
||||
"interactions": ""
|
||||
},
|
||||
{
|
||||
"name": "PickupRotateUpDown",
|
||||
"type": "Button",
|
||||
"id": "5f707c29-abb7-489d-9762-4a19e7a44caf",
|
||||
"expectedControlType": "Button",
|
||||
"processors": "",
|
||||
"interactions": ""
|
||||
},
|
||||
{
|
||||
"name": "PickupRotateLeftRight",
|
||||
"type": "Button",
|
||||
"id": "aaf0f321-7c3d-49d6-991f-1c7ee7cf6425",
|
||||
"expectedControlType": "Button",
|
||||
"processors": "",
|
||||
"interactions": ""
|
||||
},
|
||||
{
|
||||
"name": "PickupRotateCwCcw",
|
||||
"type": "Button",
|
||||
"id": "97928f76-bc32-45a3-94fd-211a439b5a9e",
|
||||
"expectedControlType": "Button",
|
||||
"processors": "",
|
||||
"interactions": ""
|
||||
},
|
||||
{
|
||||
"name": "PickupManipulateForwardBack",
|
||||
"type": "Value",
|
||||
"id": "768b624a-5837-4f36-9f89-e4953a7a8951",
|
||||
"expectedControlType": "Axis",
|
||||
"processors": "",
|
||||
"interactions": ""
|
||||
}
|
||||
],
|
||||
"bindings": [
|
||||
{
|
||||
"name": "",
|
||||
"id": "550c6b6a-81c1-4282-b4fd-ac579d21ac6c",
|
||||
"path": "<Keyboard>/space",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "KeyboardMouse",
|
||||
"action": "JumpLeft",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "730090f3-1e28-4ef7-8a82-0ebb910ef667",
|
||||
"path": "<Keyboard>/c",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "KeyboardMouse",
|
||||
"action": "ToggleCrouch",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "b4cfeb73-71f8-45b9-8cdd-8e649dde9d1b",
|
||||
"path": "<Keyboard>/z",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "KeyboardMouse",
|
||||
"action": "ToggleProne",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "e7ed5e53-bd0b-40a1-a286-8b86a4372292",
|
||||
"path": "<Gamepad>/leftStickPress",
|
||||
"interactions": "Hold",
|
||||
"processors": "",
|
||||
"groups": "Gamepad",
|
||||
"action": "ToggleProne",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "9d0b9b99-72c2-46cf-8765-fbcc9b4589ef",
|
||||
"path": "<Keyboard>/tab",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "KeyboardMouse",
|
||||
"action": "ReleaseMouse",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "UpDown",
|
||||
"id": "599162a8-d480-47e8-a889-c48d14357572",
|
||||
"path": "1DAxis",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "",
|
||||
"action": "MovementVertical",
|
||||
"isComposite": true,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "negative",
|
||||
"id": "ef0c2b1a-07ce-45fc-8d51-1bd6fdcbb28f",
|
||||
"path": "<Keyboard>/s",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "KeyboardMouse",
|
||||
"action": "MovementVertical",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "positive",
|
||||
"id": "554ed0de-b631-49a1-b623-878c3ab03682",
|
||||
"path": "<Keyboard>/w",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "KeyboardMouse",
|
||||
"action": "MovementVertical",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "094901d9-a4fa-43ef-8c9f-bfed9d7d8920",
|
||||
"path": "<Gamepad>/leftStick/y",
|
||||
"interactions": "",
|
||||
"processors": "AxisDeadzone",
|
||||
"groups": "Gamepad",
|
||||
"action": "MovementVertical",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "LeftRight",
|
||||
"id": "3c1a54d3-a057-4e61-8b9a-5b1f13341d5a",
|
||||
"path": "1DAxis",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "KeyboardMouse",
|
||||
"action": "MovementHorizontal",
|
||||
"isComposite": true,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "negative",
|
||||
"id": "57ae784a-0a44-45cb-b7b8-fcec8b04cad3",
|
||||
"path": "<Keyboard>/a",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "KeyboardMouse",
|
||||
"action": "MovementHorizontal",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "positive",
|
||||
"id": "a334ecdc-1430-4b6a-afde-3ff6d2154773",
|
||||
"path": "<Keyboard>/d",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "KeyboardMouse",
|
||||
"action": "MovementHorizontal",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "b1ab7f24-f82a-42df-b586-cced45f62b2e",
|
||||
"path": "<Gamepad>/leftStick/x",
|
||||
"interactions": "",
|
||||
"processors": "AxisDeadzone",
|
||||
"groups": "Gamepad",
|
||||
"action": "MovementHorizontal",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "adab09ec-3821-417c-82b8-314882199eb0",
|
||||
"path": "<XRController>{RightHand}/primary2daxis/y",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "XRController",
|
||||
"action": "LookVertical",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "a7212801-53a8-4fe8-831b-01974f0c2d9f",
|
||||
"path": "<Mouse>/delta/y",
|
||||
"interactions": "",
|
||||
"processors": "Scale(factor=0.1)",
|
||||
"groups": "KeyboardMouse",
|
||||
"action": "LookVertical",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "7d1e21de-8a59-41db-9f28-c95b92b3da8c",
|
||||
"path": "<Gamepad>/rightStick/y",
|
||||
"interactions": "",
|
||||
"processors": "AxisDeadzone,Scale(factor=2)",
|
||||
"groups": "",
|
||||
"action": "LookVertical",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "3481d65f-35c3-48f7-b259-6f8d2cac26c8",
|
||||
"path": "<Mouse>/delta/x",
|
||||
"interactions": "",
|
||||
"processors": "Scale(factor=0.1)",
|
||||
"groups": "KeyboardMouse",
|
||||
"action": "LookHorizontal",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "4aeeecac-4996-47e7-bd05-af550efb62ac",
|
||||
"path": "<XRController>{RightHand}/primary2daxis/x",
|
||||
"interactions": "",
|
||||
"processors": "Scale(factor=4)",
|
||||
"groups": "XRController",
|
||||
"action": "LookHorizontal",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "6533983e-06ef-4adc-abd2-6cd33b462ac8",
|
||||
"path": "<Gamepad>/rightStick/x",
|
||||
"interactions": "",
|
||||
"processors": "AxisDeadzone,Scale(factor=2)",
|
||||
"groups": "Gamepad",
|
||||
"action": "LookHorizontal",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "f5444cd9-f41a-4ebb-aadf-c10211534afa",
|
||||
"path": "<XRController>{RightHand}/grippressed",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "XRController",
|
||||
"action": "GrabRight",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "ba0f411d-3372-4c6d-b9d5-c26e875be59c",
|
||||
"path": "<Mouse>/leftButton",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "KeyboardMouse",
|
||||
"action": "GrabRight",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "ad175ec7-32cb-49e5-a110-f579d3d3413c",
|
||||
"path": "<Mouse>/rightButton",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "KeyboardMouse",
|
||||
"action": "DropRight",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "1d68fa18-5dc4-4d90-9365-9c4db81311e2",
|
||||
"path": "<Gamepad>/buttonNorth",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Gamepad",
|
||||
"action": "DropRight",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "50eac56e-5677-4524-8d0f-a1fbf16f3900",
|
||||
"path": "<Gamepad>/rightShoulder",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Gamepad",
|
||||
"action": "DropRight",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "157bf0cb-a7e7-48d9-88fa-1517693070c5",
|
||||
"path": "<XRController>{RightHand}/triggerpressed",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "XRController",
|
||||
"action": "UseRight",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "3127ec01-bb2b-4e6d-a7ff-130d739c6b31",
|
||||
"path": "<Mouse>/leftButton",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "KeyboardMouse",
|
||||
"action": "UseRight",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "5ff2efde-e215-4a78-b8bc-0bff8e57e630",
|
||||
"path": "<Gamepad>/rightTrigger",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Gamepad",
|
||||
"action": "UseRight",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "66ff8685-5751-48e9-b8e1-52b8eee82e34",
|
||||
"path": "<Gamepad>/buttonEast",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Gamepad",
|
||||
"action": "UseRight",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "9f1da403-960f-41db-b08c-65d7599e899a",
|
||||
"path": "<Keyboard>/leftShift",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "KeyboardMouse",
|
||||
"action": "Run",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "UpDown",
|
||||
"id": "394c9c63-26cd-4401-a397-184c01a7fb06",
|
||||
"path": "1DAxis",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "",
|
||||
"action": "PickupRotateUpDown",
|
||||
"isComposite": true,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "negative",
|
||||
"id": "bf93b7e2-55ce-481e-85c2-0e8b4ae2f3c9",
|
||||
"path": "<Keyboard>/i",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "KeyboardMouse",
|
||||
"action": "PickupRotateUpDown",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "positive",
|
||||
"id": "9de24fef-2a7c-4bcf-b274-63daff07abfe",
|
||||
"path": "<Keyboard>/k",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "KeyboardMouse",
|
||||
"action": "PickupRotateUpDown",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "ClockwiseCounterClockwise",
|
||||
"id": "80006719-f2f8-4dc6-9fdf-443d2486f309",
|
||||
"path": "1DAxis",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "",
|
||||
"action": "PickupRotateCwCcw",
|
||||
"isComposite": true,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "negative",
|
||||
"id": "f3d77344-6c16-4b26-9dfb-ff765db9be87",
|
||||
"path": "<Keyboard>/u",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "KeyboardMouse",
|
||||
"action": "PickupRotateCwCcw",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "positive",
|
||||
"id": "aae8cb97-dffd-4fb5-b4d3-8bc92c76da7c",
|
||||
"path": "<Keyboard>/o",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "KeyboardMouse",
|
||||
"action": "PickupRotateCwCcw",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "943c5ae4-0943-427d-95d9-cf4e676b20b0",
|
||||
"path": "<Mouse>/scroll/y",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "KeyboardMouse",
|
||||
"action": "PickupManipulateForwardBack",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "012bc491-7c79-43cd-872a-c9d5c56e6e6f",
|
||||
"path": "<XRController>{LeftHand}/primary2daxis/y",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "XRController",
|
||||
"action": "MovementVertical",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "94d2aec0-a0b9-4934-9b0a-8a27e75d118c",
|
||||
"path": "<XRController>{LeftHand}/primary2daxis/x",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "XRController",
|
||||
"action": "MovementHorizontal",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "11375370-60ed-4eff-968c-85131e5900f9",
|
||||
"path": "<XRController>{RightHand}/joystickorpadpressed",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "XRController",
|
||||
"action": "JumpRight",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "0650c167-2c34-4480-8deb-3c9c251c9563",
|
||||
"path": "<Gamepad>/buttonSouth",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Gamepad",
|
||||
"action": "JumpRight",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "9928474d-83f2-4067-a555-bc7dd2bdf3dd",
|
||||
"path": "<XRController>{LeftHand}/triggerpressed",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "XRController",
|
||||
"action": "UseLeft",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "3462f0fd-c25f-4223-88e1-e448815e9f90",
|
||||
"path": "<XRController>{LeftHand}/grippressed",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "XRController",
|
||||
"action": "GrabLeft",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "6be33530-03b7-47d5-baef-a1873dab0483",
|
||||
"path": "<XRController>{LeftHand}/primary",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "XRController",
|
||||
"action": "ToggleMenuLeft",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "a6937a04-1651-4f9b-b532-f1b1f52f91ea",
|
||||
"path": "<Keyboard>/escape",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "KeyboardMouse",
|
||||
"action": "ToggleMenuLeft",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "LeftRight",
|
||||
"id": "dc3ca725-f9f3-4b9d-b73d-ccab2de20c89",
|
||||
"path": "1DAxis",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "KeyboardMouse",
|
||||
"action": "PickupRotateLeftRight",
|
||||
"isComposite": true,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "negative",
|
||||
"id": "edbe58fa-0e59-446c-9765-589870585e9c",
|
||||
"path": "<Keyboard>/l",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "KeyboardMouse",
|
||||
"action": "PickupRotateLeftRight",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "positive",
|
||||
"id": "6eab6abd-f646-4064-a093-bef75d51704f",
|
||||
"path": "<Keyboard>/j",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "KeyboardMouse",
|
||||
"action": "PickupRotateLeftRight",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "41374253-d07b-4eb9-b76f-68ff25ad6099",
|
||||
"path": "<XRController>{RightHand}/primary",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "XRController",
|
||||
"action": "ToggleMenuRight",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "98ed6e07-cbe7-4332-9ab3-7d130fc2be70",
|
||||
"path": "<Gamepad>/start",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Gamepad",
|
||||
"action": "ToggleMenuRight",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "813f1ec6-f321-4bd5-b091-a936c2173904",
|
||||
"path": "<Gamepad>/rightTrigger",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Gamepad",
|
||||
"action": "GrabRight",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "d2eb4465-b94a-4012-ab0d-5c9fa72c9cb7",
|
||||
"path": "<Gamepad>/buttonEast",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Gamepad",
|
||||
"action": "GrabRight",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"id": "d39fd262-9f80-4061-bf54-a42d997bb0d6",
|
||||
"path": "<Gamepad>/leftStickPress",
|
||||
"interactions": "Press",
|
||||
"processors": "",
|
||||
"groups": "Gamepad",
|
||||
"action": "ToggleCrouch",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "RightStickWithLeftShoulder",
|
||||
"id": "b2aff2a5-4826-433b-b14b-4c2c8925e56c",
|
||||
"path": "ButtonWithOneModifier",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Gamepad",
|
||||
"action": "PickupRotateUpDown",
|
||||
"isComposite": true,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "modifier",
|
||||
"id": "42575b80-955d-494a-bdff-4e83a6beb850",
|
||||
"path": "<Gamepad>/leftShoulder",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Gamepad",
|
||||
"action": "PickupRotateUpDown",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "button",
|
||||
"id": "ada6cac4-3fc3-4dc5-a418-2d6c3f218d24",
|
||||
"path": "<Gamepad>/rightStick/y",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Gamepad",
|
||||
"action": "PickupRotateUpDown",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "RightStickWithLeftShoulder",
|
||||
"id": "a69e5173-82f8-4ed7-8d30-af528c6fa262",
|
||||
"path": "ButtonWithOneModifier",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Gamepad",
|
||||
"action": "PickupRotateLeftRight",
|
||||
"isComposite": true,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "modifier",
|
||||
"id": "52c40760-cb07-427d-95c9-cd8539c939e8",
|
||||
"path": "<Gamepad>/leftShoulder",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Gamepad",
|
||||
"action": "PickupRotateLeftRight",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "button",
|
||||
"id": "f3ce62de-2286-499f-bfbb-aaad0021a224",
|
||||
"path": "<Gamepad>/rightStick/x",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Gamepad",
|
||||
"action": "PickupRotateLeftRight",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "LeftStickWithLeftShoulder",
|
||||
"id": "5466362d-116f-4eb8-9825-010812d07ff7",
|
||||
"path": "ButtonWithOneModifier",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Gamepad",
|
||||
"action": "PickupRotateCwCcw",
|
||||
"isComposite": true,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "modifier",
|
||||
"id": "79ec2bba-44b3-4a1a-a18c-e03370ecce44",
|
||||
"path": "<Gamepad>/leftShoulder",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Gamepad",
|
||||
"action": "PickupRotateCwCcw",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "button",
|
||||
"id": "3c906a95-8491-42be-a414-8d69ecdf037b",
|
||||
"path": "<Gamepad>/leftStick/x",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Gamepad",
|
||||
"action": "PickupRotateCwCcw",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "LeftStickWithLeftShoulder",
|
||||
"id": "9170df3e-d37e-4c49-8bb3-5a944ff141d5",
|
||||
"path": "ButtonWithOneModifier",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Gamepad",
|
||||
"action": "PickupManipulateForwardBack",
|
||||
"isComposite": true,
|
||||
"isPartOfComposite": false
|
||||
},
|
||||
{
|
||||
"name": "modifier",
|
||||
"id": "07f0af65-6b32-4bf4-ac49-52784277b1fc",
|
||||
"path": "<Gamepad>/leftShoulder",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Gamepad",
|
||||
"action": "PickupManipulateForwardBack",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
},
|
||||
{
|
||||
"name": "button",
|
||||
"id": "0f1b2753-f8d1-4106-b35b-1551d1c825db",
|
||||
"path": "<Gamepad>/leftStick/y",
|
||||
"interactions": "",
|
||||
"processors": "",
|
||||
"groups": "Gamepad",
|
||||
"action": "PickupManipulateForwardBack",
|
||||
"isComposite": false,
|
||||
"isPartOfComposite": true
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"controlSchemes": [
|
||||
{
|
||||
"name": "KeyboardMouse",
|
||||
"bindingGroup": "KeyboardMouse",
|
||||
"devices": [
|
||||
{
|
||||
"devicePath": "<Keyboard>",
|
||||
"isOptional": false,
|
||||
"isOR": false
|
||||
},
|
||||
{
|
||||
"devicePath": "<Mouse>",
|
||||
"isOptional": false,
|
||||
"isOR": false
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Gamepad",
|
||||
"bindingGroup": "Gamepad",
|
||||
"devices": [
|
||||
{
|
||||
"devicePath": "<Gamepad>",
|
||||
"isOptional": false,
|
||||
"isOR": false
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "XRController",
|
||||
"bindingGroup": "XRController",
|
||||
"devices": [
|
||||
{
|
||||
"devicePath": "<XRController>{RightHand}",
|
||||
"isOptional": true,
|
||||
"isOR": false
|
||||
},
|
||||
{
|
||||
"devicePath": "<XRController>{LeftHand}",
|
||||
"isOptional": true,
|
||||
"isOR": false
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,94 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: Avatar_Utility_Base_MAT
|
||||
m_Shader: {fileID: 4800000, guid: 0b7113dea2069fc4e8943843eff19f70, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords:
|
||||
- _EMISSION
|
||||
- _ENABLE_GEOMETRIC_SPECULAR_AA
|
||||
m_InvalidKeywords:
|
||||
- _METALLICGLOSSMAP
|
||||
- _NORMALMAP
|
||||
m_LightmapFlags: 1
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 2800000, guid: 92ce7c78a3437064d9b781dd692a70e5, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 2800000, guid: 1994f4fc451e42149869677281421a08, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 2800000, guid: 1994f4fc451e42149869677281421a08, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 2800000, guid: afdf886ec0372bf43835e45764514cee, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _Bicubic: 0
|
||||
- _BumpScale: 1
|
||||
- _Cutoff: 0.5
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DstBlend: 0
|
||||
- _EnableEmission: 1
|
||||
- _EnableGeometricSpecularAA: 1
|
||||
- _GlossMapScale: 0.58
|
||||
- _Glossiness: 0.359
|
||||
- _GlossyReflections: 1
|
||||
- _LightmapType: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _Parallax: 0.02
|
||||
- _Shininess: 0.537
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularAAScreenSpaceVariance: 0.1
|
||||
- _SpecularAAThreshold: 0.2
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _UVSec: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissionColor: {r: 0.9716981, g: 0.9716981, b: 0.9716981, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
@@ -0,0 +1,94 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: Avatar_Utility_Body_MAT
|
||||
m_Shader: {fileID: 4800000, guid: 0b7113dea2069fc4e8943843eff19f70, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords:
|
||||
- _EMISSION
|
||||
- _ENABLE_GEOMETRIC_SPECULAR_AA
|
||||
m_InvalidKeywords:
|
||||
- _METALLICGLOSSMAP
|
||||
- _NORMALMAP
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 2800000, guid: 80ffcbd97b3b102428eaa5283713fea7, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 2800000, guid: d0741124752ca474e89ba2d586484bf2, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 2800000, guid: d0741124752ca474e89ba2d586484bf2, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 2800000, guid: 0ec90c6e3b7802f4793df205483e45ef, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _Bicubic: 0
|
||||
- _BumpScale: 1
|
||||
- _Cutoff: 0.5
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DstBlend: 0
|
||||
- _EnableEmission: 1
|
||||
- _EnableGeometricSpecularAA: 1
|
||||
- _GlossMapScale: 0.55
|
||||
- _Glossiness: 0.571
|
||||
- _GlossyReflections: 1
|
||||
- _LightmapType: 0
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _Parallax: 0.02
|
||||
- _Shininess: 1
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularAAScreenSpaceVariance: 0.1
|
||||
- _SpecularAAThreshold: 0.2
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _UVSec: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissionColor: {r: 0.8679245, g: 0.8679245, b: 0.8679245, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
|
After Width: | Height: | Size: 174 KiB |
|
After Width: | Height: | Size: 175 KiB |
|
After Width: | Height: | Size: 570 KiB |
|
After Width: | Height: | Size: 1.1 MiB |
|
After Width: | Height: | Size: 827 KiB |
|
After Width: | Height: | Size: 576 KiB |
@@ -0,0 +1,460 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!1 &1598447951629261349
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 8685200476950124940}
|
||||
- component: {fileID: 3567002345054663220}
|
||||
m_Layer: 18
|
||||
m_Name: ClientSimAvatar
|
||||
m_TagString: EditorOnly
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!4 &8685200476950124940
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1598447951629261349}
|
||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_Children:
|
||||
- {fileID: 2978344480331542236}
|
||||
m_Father: {fileID: 0}
|
||||
m_RootOrder: 0
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!114 &3567002345054663220
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1598447951629261349}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: ac1020b347eeb4e45afabd4d605aa3ae, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
avatarAnimator: {fileID: 2978344480324632894}
|
||||
--- !u!1001 &2978344480331936862
|
||||
PrefabInstance:
|
||||
m_ObjectHideFlags: 0
|
||||
serializedVersion: 2
|
||||
m_Modification:
|
||||
m_TransformParent: {fileID: 8685200476950124940}
|
||||
m_Modifications:
|
||||
- target: {fileID: 100000, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100002, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Name
|
||||
value: Avatar_Utility
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100002, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100004, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100006, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100008, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100010, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100012, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100014, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100016, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100018, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100020, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100022, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100024, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100026, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100028, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100030, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100032, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100034, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100036, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100038, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100040, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100042, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100044, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100046, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100048, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100050, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100052, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100054, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100056, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100058, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100060, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100062, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100064, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100066, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100068, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100070, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100072, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100074, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100076, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100078, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100080, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100082, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100084, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100086, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100088, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100090, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100092, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100094, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100096, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100098, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100100, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100102, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100104, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100106, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100108, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100110, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100112, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100114, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100116, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100118, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100120, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100122, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100124, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100126, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100128, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100130, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100132, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100134, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100136, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 100138, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 18
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 400002, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_RootOrder
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 400002, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_LocalPosition.x
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 400002, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_LocalPosition.y
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 400002, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_LocalPosition.z
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 400002, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_LocalRotation.w
|
||||
value: 1
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 400002, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_LocalRotation.x
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 400002, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_LocalRotation.y
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 400002, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_LocalRotation.z
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 400002, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.x
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 400002, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.y
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 400002, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.z
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 400014, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_LocalRotation.w
|
||||
value: 0.79560703
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 400014, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_LocalRotation.x
|
||||
value: 0.5973083
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 400014, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_LocalRotation.y
|
||||
value: -0.060781915
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 400014, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_LocalRotation.z
|
||||
value: -0.08085694
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 400014, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.x
|
||||
value: 70.15501
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 400014, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.y
|
||||
value: -34.711002
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 400014, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.z
|
||||
value: -36.363003
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 400076, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_LocalRotation.w
|
||||
value: 0.7956068
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 400076, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_LocalRotation.x
|
||||
value: 0.5973086
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 400076, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_LocalRotation.y
|
||||
value: -0.06078183
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 400076, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_LocalRotation.z
|
||||
value: -0.08085673
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 400076, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.x
|
||||
value: 70.15501
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 400076, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.y
|
||||
value: -34.711002
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 400076, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.z
|
||||
value: -36.363003
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 9500000, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_CullingMode
|
||||
value: 2
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 9500000, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
propertyPath: m_ApplyRootMotion
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
m_RemovedComponents: []
|
||||
m_SourcePrefab: {fileID: 100100000, guid: f950e9463c219da499826fbb7c22258c, type: 3}
|
||||
--- !u!4 &2978344480331542236 stripped
|
||||
Transform:
|
||||
m_CorrespondingSourceObject: {fileID: 400002, guid: f950e9463c219da499826fbb7c22258c,
|
||||
type: 3}
|
||||
m_PrefabInstance: {fileID: 2978344480331936862}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
--- !u!95 &2978344480324632894 stripped
|
||||
Animator:
|
||||
m_CorrespondingSourceObject: {fileID: 9500000, guid: f950e9463c219da499826fbb7c22258c,
|
||||
type: 3}
|
||||
m_PrefabInstance: {fileID: 2978344480331936862}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
@@ -0,0 +1,47 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!1 &9045886366396627694
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 5985191620957555646}
|
||||
- component: {fileID: 5324232520253109084}
|
||||
m_Layer: 0
|
||||
m_Name: ClientSimReticle
|
||||
m_TagString: EditorOnly
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!4 &5985191620957555646
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 9045886366396627694}
|
||||
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_Children: []
|
||||
m_Father: {fileID: 0}
|
||||
m_RootOrder: 0
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!114 &5324232520253109084
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 9045886366396627694}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d04f5e2ca86a6fe48854dbfe994387e2, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
reticle: {fileID: 2800000, guid: f496a127ab46cbe42a3719e5d79530b6, type: 3}
|
||||
uiShapeHoverIcon: {fileID: 2800000, guid: aaeec129fbd795942b12ec48e87c68e5, type: 3}
|
||||
@@ -0,0 +1,261 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!1 &5830167154623614225
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 1022882690734745640}
|
||||
m_Layer: 0
|
||||
m_Name: Head
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!4 &1022882690734745640
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 5830167154623614225}
|
||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_Children:
|
||||
- {fileID: 6277239502600238695}
|
||||
m_Father: {fileID: 6277239501755619977}
|
||||
m_RootOrder: 0
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!1 &6277239501755620214
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 6277239501755619977}
|
||||
- component: {fileID: 9133575979095029031}
|
||||
m_Layer: 0
|
||||
m_Name: ClientSimDestkopTrackingData
|
||||
m_TagString: EditorOnly
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!4 &6277239501755619977
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 6277239501755620214}
|
||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_Children:
|
||||
- {fileID: 1022882690734745640}
|
||||
m_Father: {fileID: 0}
|
||||
m_RootOrder: 0
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!114 &9133575979095029031
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 6277239501755620214}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 5cdb19253bd15ee4296b716139111626, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
head: {fileID: 6277239502600238695}
|
||||
leftHand: {fileID: 6277239503217008583}
|
||||
rightHand: {fileID: 6277239503464921794}
|
||||
playspace: {fileID: 6277239501755619977}
|
||||
playerAudioListener: {fileID: 6277239503601283957}
|
||||
playerCamera: {fileID: 6277239502600238694}
|
||||
playerXRotationBase: {fileID: 6277239502600238695}
|
||||
playerYRotationBase: {fileID: 1022882690734745640}
|
||||
--- !u!1 &6277239502600238692
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 6277239502600238695}
|
||||
- component: {fileID: 6277239502600238694}
|
||||
m_Layer: 0
|
||||
m_Name: PlayerCamera
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!4 &6277239502600238695
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 6277239502600238692}
|
||||
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_Children:
|
||||
- {fileID: 6277239503601283957}
|
||||
- {fileID: 6277239503217008583}
|
||||
- {fileID: 6277239503464921794}
|
||||
m_Father: {fileID: 1022882690734745640}
|
||||
m_RootOrder: 0
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!20 &6277239502600238694
|
||||
Camera:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 6277239502600238692}
|
||||
m_Enabled: 1
|
||||
serializedVersion: 2
|
||||
m_ClearFlags: 1
|
||||
m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0}
|
||||
m_projectionMatrixMode: 1
|
||||
m_GateFitMode: 2
|
||||
m_FOVAxisMode: 0
|
||||
m_SensorSize: {x: 36, y: 24}
|
||||
m_LensShift: {x: 0, y: 0}
|
||||
m_FocalLength: 50
|
||||
m_NormalizedViewPortRect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 1
|
||||
height: 1
|
||||
near clip plane: 0.3
|
||||
far clip plane: 1000
|
||||
field of view: 60
|
||||
orthographic: 0
|
||||
orthographic size: 5
|
||||
m_Depth: 0
|
||||
m_CullingMask:
|
||||
serializedVersion: 2
|
||||
m_Bits: 4294705151
|
||||
m_RenderingPath: -1
|
||||
m_TargetTexture: {fileID: 0}
|
||||
m_TargetDisplay: 0
|
||||
m_TargetEye: 3
|
||||
m_HDR: 1
|
||||
m_AllowMSAA: 1
|
||||
m_AllowDynamicResolution: 0
|
||||
m_ForceIntoRT: 0
|
||||
m_OcclusionCulling: 1
|
||||
m_StereoConvergence: 10
|
||||
m_StereoSeparation: 0.022
|
||||
--- !u!1 &6277239503217008580
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 6277239503217008583}
|
||||
m_Layer: 0
|
||||
m_Name: LeftHand
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!4 &6277239503217008583
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 6277239503217008580}
|
||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_Children: []
|
||||
m_Father: {fileID: 6277239502600238695}
|
||||
m_RootOrder: 1
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!1 &6277239503464921795
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 6277239503464921794}
|
||||
m_Layer: 0
|
||||
m_Name: RightHand
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!4 &6277239503464921794
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 6277239503464921795}
|
||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_Children: []
|
||||
m_Father: {fileID: 6277239502600238695}
|
||||
m_RootOrder: 2
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!1 &6277239503601283954
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 6277239503601283957}
|
||||
- component: {fileID: 6277239503601283956}
|
||||
m_Layer: 0
|
||||
m_Name: AudioListener
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!4 &6277239503601283957
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 6277239503601283954}
|
||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_Children: []
|
||||
m_Father: {fileID: 6277239502600238695}
|
||||
m_RootOrder: 0
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!81 &6277239503601283956
|
||||
AudioListener:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 6277239503601283954}
|
||||
m_Enabled: 1
|
||||
@@ -0,0 +1,50 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!1 &8613058556162162912
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 5108973792271252004}
|
||||
- component: {fileID: 4435668069668968330}
|
||||
m_Layer: 0
|
||||
m_Name: ClientSimHighlightManager
|
||||
m_TagString: EditorOnly
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!4 &5108973792271252004
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 8613058556162162912}
|
||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_Children: []
|
||||
m_Father: {fileID: 0}
|
||||
m_RootOrder: 0
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!114 &4435668069668968330
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 8613058556162162912}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 1938047de93c66141923068bf4063db5, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
cubeMesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0}
|
||||
capsuleMesh: {fileID: 10208, guid: 0000000000000000e000000000000000, type: 0}
|
||||
sphereMesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0}
|
||||
proxyHighlightPrefab: {fileID: 2488192816357944019, guid: d7a2cfc633369c7468598f029ba01ff1,
|
||||
type: 3}
|
||||
@@ -0,0 +1,93 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!1 &2488192816357944019
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 7295163857176415723}
|
||||
- component: {fileID: 8173559206733122311}
|
||||
- component: {fileID: 3962040078484231236}
|
||||
- component: {fileID: 8616406340581317199}
|
||||
m_Layer: 18
|
||||
m_Name: ClientSimHighlightProxy
|
||||
m_TagString: EditorOnly
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!4 &7295163857176415723
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 2488192816357944019}
|
||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_Children: []
|
||||
m_Father: {fileID: 0}
|
||||
m_RootOrder: 0
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!114 &8173559206733122311
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 2488192816357944019}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: cdc8e1faef31d1d479cb70d50716fc35, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
--- !u!33 &3962040078484231236
|
||||
MeshFilter:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 2488192816357944019}
|
||||
m_Mesh: {fileID: 0}
|
||||
--- !u!23 &8616406340581317199
|
||||
MeshRenderer:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 2488192816357944019}
|
||||
m_Enabled: 1
|
||||
m_CastShadows: 0
|
||||
m_ReceiveShadows: 0
|
||||
m_DynamicOccludee: 1
|
||||
m_MotionVectors: 1
|
||||
m_LightProbeUsage: 0
|
||||
m_ReflectionProbeUsage: 0
|
||||
m_RayTracingMode: 2
|
||||
m_RenderingLayerMask: 1
|
||||
m_RendererPriority: 0
|
||||
m_Materials: []
|
||||
m_StaticBatchInfo:
|
||||
firstSubMesh: 0
|
||||
subMeshCount: 0
|
||||
m_StaticBatchRoot: {fileID: 0}
|
||||
m_ProbeAnchor: {fileID: 0}
|
||||
m_LightProbeVolumeOverride: {fileID: 0}
|
||||
m_ScaleInLightmap: 1
|
||||
m_ReceiveGI: 1
|
||||
m_PreserveUVs: 0
|
||||
m_IgnoreNormalsForChartDetection: 0
|
||||
m_ImportantGI: 0
|
||||
m_StitchLightmapSeams: 1
|
||||
m_SelectedEditorRenderState: 3
|
||||
m_MinimumChartSize: 4
|
||||
m_AutoUVMaxDistance: 0.5
|
||||
m_AutoUVMaxAngle: 89
|
||||
m_LightmapParameters: {fileID: 0}
|
||||
m_SortingLayerID: 0
|
||||
m_SortingLayer: 0
|
||||
m_SortingOrder: 0
|
||||
@@ -0,0 +1,90 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!1 &8539709630508027057
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 5066979699345850875}
|
||||
- component: {fileID: 2948120297863683618}
|
||||
- component: {fileID: 4333843303851597399}
|
||||
- component: {fileID: 2455432797601301070}
|
||||
m_Layer: 0
|
||||
m_Name: ClientSimInputManager
|
||||
m_TagString: EditorOnly
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!4 &5066979699345850875
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 8539709630508027057}
|
||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_Children: []
|
||||
m_Father: {fileID: 0}
|
||||
m_RootOrder: 0
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!114 &2948120297863683618
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 8539709630508027057}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: b27b7e912c8f06b47b47730996323943, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
--- !u!114 &4333843303851597399
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 8539709630508027057}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 5fc129f391f3488e947eb13a9208bae4, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
--- !u!114 &2455432797601301070
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 8539709630508027057}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 62899f850307741f2a39c98a8b639597, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
m_Actions: {fileID: -944628639613478452, guid: 2a08897387d5ffd4795ccec0e8384a6a,
|
||||
type: 3}
|
||||
m_NotificationBehavior: 3
|
||||
m_UIInputModule: {fileID: 0}
|
||||
m_DeviceLostEvent:
|
||||
m_PersistentCalls:
|
||||
m_Calls: []
|
||||
m_DeviceRegainedEvent:
|
||||
m_PersistentCalls:
|
||||
m_Calls: []
|
||||
m_ControlsChangedEvent:
|
||||
m_PersistentCalls:
|
||||
m_Calls: []
|
||||
m_ActionEvents: []
|
||||
m_NeverAutoSwitchControlSchemes: 0
|
||||
m_DefaultControlScheme: KeyboardMouse
|
||||
m_DefaultActionMap: Player
|
||||
m_SplitScreenIndex: -1
|
||||
m_Camera: {fileID: 0}
|
||||
@@ -0,0 +1,59 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!1 &8965790269314133771
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 8855558192208350178}
|
||||
- component: {fileID: 6125864761777863447}
|
||||
- component: {fileID: -1432711561881907052}
|
||||
m_Layer: 0
|
||||
m_Name: ClientSimPlayerData
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!4 &8855558192208350178
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 8965790269314133771}
|
||||
serializedVersion: 2
|
||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_ConstrainProportionsScale: 0
|
||||
m_Children: []
|
||||
m_Father: {fileID: 0}
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!114 &6125864761777863447
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 8965790269314133771}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 0ef04bdeba52437cb909dc841044fd57, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
--- !u!114 &-1432711561881907052
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 8965790269314133771}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 06c904c1b8134763a58e319723ec67ad, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
@@ -0,0 +1,708 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!1 &1520368773658574567
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 9201486100010084664}
|
||||
- component: {fileID: 8735158490342660880}
|
||||
m_Layer: 10
|
||||
m_Name: ClientSimPlayerLocal
|
||||
m_TagString: EditorOnly
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!4 &9201486100010084664
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1520368773658574567}
|
||||
serializedVersion: 2
|
||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_ConstrainProportionsScale: 0
|
||||
m_Children:
|
||||
- {fileID: 8136021783709213184}
|
||||
- {fileID: 4166223426551178936}
|
||||
m_Father: {fileID: 0}
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!114 &8735158490342660880
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1520368773658574567}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: a0d02ab56371a09488276de93c16f8de, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
playerController: {fileID: 2879604618624032515}
|
||||
stationManager: {fileID: 6987989042310722051}
|
||||
playerRaycaster: {fileID: 426529448652689727}
|
||||
playerTrackingData: {fileID: 8854419002590015663}
|
||||
playerAvatar: {fileID: 8965323867813198036}
|
||||
reticle: {fileID: 7639268120162917090}
|
||||
isInstanceOwner: 0
|
||||
locomotionData:
|
||||
walkSpeed: 2
|
||||
strafeSpeed: 2
|
||||
runSpeed: 4
|
||||
jumpSpeed: 0
|
||||
gravityStrength: 1
|
||||
immobilized: 0
|
||||
useLegacyLocomotion: 0
|
||||
pickupData:
|
||||
pickupsEnabled: 1
|
||||
audioData:
|
||||
voiceVolumetricRadius: 0
|
||||
voiceDistanceNear: 0
|
||||
voiceDistanceFar: 25
|
||||
voiceGain: 15
|
||||
voiceLowpass: 0
|
||||
avatarAudioVolumetricRadius: 0
|
||||
avatarAudioNearRadius: 0
|
||||
avatarAudioFarRadius: 0
|
||||
avatarAudioGain: 0
|
||||
avatarAudioCustomCurve: 0
|
||||
avatarAudioForceSpatial: 0
|
||||
PlayerPersistenceObjects: []
|
||||
PlayerDataPrefab: {fileID: 6125864761777863447, guid: adab318f0eade724288895ff018778fb,
|
||||
type: 3}
|
||||
--- !u!1 &1747001265075626404
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 6416732588723397274}
|
||||
- component: {fileID: 2672524086710227960}
|
||||
m_Layer: 0
|
||||
m_Name: RightHandRigidbody
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!4 &6416732588723397274
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1747001265075626404}
|
||||
serializedVersion: 2
|
||||
m_LocalRotation: {x: -0, y: -0, z: 0.000000014901163, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_ConstrainProportionsScale: 0
|
||||
m_Children: []
|
||||
m_Father: {fileID: 1068071324215617096}
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!54 &2672524086710227960
|
||||
Rigidbody:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1747001265075626404}
|
||||
serializedVersion: 4
|
||||
m_Mass: 1
|
||||
m_Drag: 0
|
||||
m_AngularDrag: 0.05
|
||||
m_CenterOfMass: {x: 0, y: 0, z: 0}
|
||||
m_InertiaTensor: {x: 1, y: 1, z: 1}
|
||||
m_InertiaRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_IncludeLayers:
|
||||
serializedVersion: 2
|
||||
m_Bits: 0
|
||||
m_ExcludeLayers:
|
||||
serializedVersion: 2
|
||||
m_Bits: 0
|
||||
m_ImplicitCom: 1
|
||||
m_ImplicitTensor: 1
|
||||
m_UseGravity: 0
|
||||
m_IsKinematic: 1
|
||||
m_Interpolate: 0
|
||||
m_Constraints: 0
|
||||
m_CollisionDetection: 0
|
||||
--- !u!1 &6183443233582450204
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 1068071324215617096}
|
||||
- component: {fileID: 7332653421116794219}
|
||||
m_Layer: 0
|
||||
m_Name: RightHandPosition
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!4 &1068071324215617096
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 6183443233582450204}
|
||||
serializedVersion: 2
|
||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_ConstrainProportionsScale: 0
|
||||
m_Children:
|
||||
- {fileID: 6416732588723397274}
|
||||
m_Father: {fileID: 4166223426551178936}
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!114 &7332653421116794219
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 6183443233582450204}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d5604cf6b2917b144a0c023cac36e1b7, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
handType: 0
|
||||
handTransform: {fileID: 6416732588723397274}
|
||||
otherHand: {fileID: 1428030017342660723}
|
||||
--- !u!1 &8104978433573980496
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 4166223426551178936}
|
||||
- component: {fileID: 2879604618624032515}
|
||||
- component: {fileID: 6987989042310722051}
|
||||
- component: {fileID: 426529448652689727}
|
||||
- component: {fileID: 2594058383979682957}
|
||||
- component: {fileID: 7511341561770424139}
|
||||
m_Layer: 10
|
||||
m_Name: PlayerController
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!4 &4166223426551178936
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 8104978433573980496}
|
||||
serializedVersion: 2
|
||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_ConstrainProportionsScale: 0
|
||||
m_Children:
|
||||
- {fileID: 3847117398369604460}
|
||||
- {fileID: 4543718553141955561}
|
||||
- {fileID: 1068071324215617096}
|
||||
- {fileID: 5997934662479437569}
|
||||
m_Father: {fileID: 9201486100010084664}
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!114 &2879604618624032515
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 8104978433573980496}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 978f5eb2f40732b4a90c6107b7610ecf, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
--- !u!114 &6987989042310722051
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 8104978433573980496}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 661af135a574ca54298877eed2ca87a5, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
--- !u!114 &426529448652689727
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 8104978433573980496}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 07cd0208a6e39194699dcdb10e3689fc, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
leftHand: {fileID: 1428030017342660723}
|
||||
rightHand: {fileID: 7332653421116794219}
|
||||
--- !u!54 &2594058383979682957
|
||||
Rigidbody:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 8104978433573980496}
|
||||
serializedVersion: 4
|
||||
m_Mass: 1
|
||||
m_Drag: 0
|
||||
m_AngularDrag: 0.05
|
||||
m_CenterOfMass: {x: 0, y: 0, z: 0}
|
||||
m_InertiaTensor: {x: 1, y: 1, z: 1}
|
||||
m_InertiaRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_IncludeLayers:
|
||||
serializedVersion: 2
|
||||
m_Bits: 0
|
||||
m_ExcludeLayers:
|
||||
serializedVersion: 2
|
||||
m_Bits: 0
|
||||
m_ImplicitCom: 1
|
||||
m_ImplicitTensor: 1
|
||||
m_UseGravity: 0
|
||||
m_IsKinematic: 1
|
||||
m_Interpolate: 0
|
||||
m_Constraints: 0
|
||||
m_CollisionDetection: 0
|
||||
--- !u!143 &7511341561770424139
|
||||
CharacterController:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 8104978433573980496}
|
||||
m_Material: {fileID: 0}
|
||||
m_IncludeLayers:
|
||||
serializedVersion: 2
|
||||
m_Bits: 0
|
||||
m_ExcludeLayers:
|
||||
serializedVersion: 2
|
||||
m_Bits: 0
|
||||
m_LayerOverridePriority: 0
|
||||
m_IsTrigger: 0
|
||||
m_ProvidesContacts: 0
|
||||
m_Enabled: 1
|
||||
serializedVersion: 3
|
||||
m_Height: 1.6
|
||||
m_Radius: 0.2
|
||||
m_SlopeLimit: 50
|
||||
m_StepOffset: 0.5
|
||||
m_SkinWidth: 0.005
|
||||
m_MinMoveDistance: 0
|
||||
m_Center: {x: 0, y: 0.8, z: 0}
|
||||
--- !u!1 &8327901833412234180
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 4543718553141955561}
|
||||
- component: {fileID: 1428030017342660723}
|
||||
m_Layer: 0
|
||||
m_Name: LeftHandPosition
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!4 &4543718553141955561
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 8327901833412234180}
|
||||
serializedVersion: 2
|
||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_ConstrainProportionsScale: 0
|
||||
m_Children:
|
||||
- {fileID: 1398508587545401248}
|
||||
m_Father: {fileID: 4166223426551178936}
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!114 &1428030017342660723
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 8327901833412234180}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d5604cf6b2917b144a0c023cac36e1b7, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
handType: 1
|
||||
handTransform: {fileID: 1398508587545401248}
|
||||
otherHand: {fileID: 7332653421116794219}
|
||||
--- !u!1 &8482763490750987116
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 1398508587545401248}
|
||||
- component: {fileID: 2617244907005037469}
|
||||
m_Layer: 0
|
||||
m_Name: LeftHandRigidbody
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!4 &1398508587545401248
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 8482763490750987116}
|
||||
serializedVersion: 2
|
||||
m_LocalRotation: {x: -0, y: -0, z: 0.000000014901163, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_ConstrainProportionsScale: 0
|
||||
m_Children: []
|
||||
m_Father: {fileID: 4543718553141955561}
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!54 &2617244907005037469
|
||||
Rigidbody:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 8482763490750987116}
|
||||
serializedVersion: 4
|
||||
m_Mass: 1
|
||||
m_Drag: 0
|
||||
m_AngularDrag: 0.05
|
||||
m_CenterOfMass: {x: 0, y: 0, z: 0}
|
||||
m_InertiaTensor: {x: 1, y: 1, z: 1}
|
||||
m_InertiaRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_IncludeLayers:
|
||||
serializedVersion: 2
|
||||
m_Bits: 0
|
||||
m_ExcludeLayers:
|
||||
serializedVersion: 2
|
||||
m_Bits: 0
|
||||
m_ImplicitCom: 1
|
||||
m_ImplicitTensor: 1
|
||||
m_UseGravity: 0
|
||||
m_IsKinematic: 1
|
||||
m_Interpolate: 0
|
||||
m_Constraints: 0
|
||||
m_CollisionDetection: 0
|
||||
--- !u!1001 &297745402124780936
|
||||
PrefabInstance:
|
||||
m_ObjectHideFlags: 0
|
||||
serializedVersion: 2
|
||||
m_Modification:
|
||||
serializedVersion: 3
|
||||
m_TransformParent: {fileID: 4166223426551178936}
|
||||
m_Modifications:
|
||||
- target: {fileID: 6277239501755619977, guid: 6be65459cc2282a4094483092bc0dfe2,
|
||||
type: 3}
|
||||
propertyPath: m_RootOrder
|
||||
value: 3
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 6277239501755619977, guid: 6be65459cc2282a4094483092bc0dfe2,
|
||||
type: 3}
|
||||
propertyPath: m_LocalPosition.x
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 6277239501755619977, guid: 6be65459cc2282a4094483092bc0dfe2,
|
||||
type: 3}
|
||||
propertyPath: m_LocalPosition.y
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 6277239501755619977, guid: 6be65459cc2282a4094483092bc0dfe2,
|
||||
type: 3}
|
||||
propertyPath: m_LocalPosition.z
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 6277239501755619977, guid: 6be65459cc2282a4094483092bc0dfe2,
|
||||
type: 3}
|
||||
propertyPath: m_LocalRotation.w
|
||||
value: 1
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 6277239501755619977, guid: 6be65459cc2282a4094483092bc0dfe2,
|
||||
type: 3}
|
||||
propertyPath: m_LocalRotation.x
|
||||
value: -0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 6277239501755619977, guid: 6be65459cc2282a4094483092bc0dfe2,
|
||||
type: 3}
|
||||
propertyPath: m_LocalRotation.y
|
||||
value: -0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 6277239501755619977, guid: 6be65459cc2282a4094483092bc0dfe2,
|
||||
type: 3}
|
||||
propertyPath: m_LocalRotation.z
|
||||
value: -0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 6277239501755619977, guid: 6be65459cc2282a4094483092bc0dfe2,
|
||||
type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.x
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 6277239501755619977, guid: 6be65459cc2282a4094483092bc0dfe2,
|
||||
type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.y
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 6277239501755619977, guid: 6be65459cc2282a4094483092bc0dfe2,
|
||||
type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.z
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 6277239501755620214, guid: 6be65459cc2282a4094483092bc0dfe2,
|
||||
type: 3}
|
||||
propertyPath: m_Name
|
||||
value: DestkopTrackingData
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 6277239502600238692, guid: 6be65459cc2282a4094483092bc0dfe2,
|
||||
type: 3}
|
||||
propertyPath: m_TagString
|
||||
value: MainCamera
|
||||
objectReference: {fileID: 0}
|
||||
m_RemovedComponents: []
|
||||
m_RemovedGameObjects: []
|
||||
m_AddedGameObjects: []
|
||||
m_AddedComponents: []
|
||||
m_SourcePrefab: {fileID: 100100000, guid: 6be65459cc2282a4094483092bc0dfe2, type: 3}
|
||||
--- !u!4 &5997934662479437569 stripped
|
||||
Transform:
|
||||
m_CorrespondingSourceObject: {fileID: 6277239501755619977, guid: 6be65459cc2282a4094483092bc0dfe2,
|
||||
type: 3}
|
||||
m_PrefabInstance: {fileID: 297745402124780936}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
--- !u!114 &8854419002590015663 stripped
|
||||
MonoBehaviour:
|
||||
m_CorrespondingSourceObject: {fileID: 9133575979095029031, guid: 6be65459cc2282a4094483092bc0dfe2,
|
||||
type: 3}
|
||||
m_PrefabInstance: {fileID: 297745402124780936}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 5cdb19253bd15ee4296b716139111626, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
--- !u!1001 &2587133980147067326
|
||||
PrefabInstance:
|
||||
m_ObjectHideFlags: 0
|
||||
serializedVersion: 2
|
||||
m_Modification:
|
||||
serializedVersion: 3
|
||||
m_TransformParent: {fileID: 9201486100010084664}
|
||||
m_Modifications:
|
||||
- target: {fileID: 5985191620957555646, guid: 1152d1ec7ec6c924e818d98cc0d0c418,
|
||||
type: 3}
|
||||
propertyPath: m_RootOrder
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 5985191620957555646, guid: 1152d1ec7ec6c924e818d98cc0d0c418,
|
||||
type: 3}
|
||||
propertyPath: m_LocalPosition.x
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 5985191620957555646, guid: 1152d1ec7ec6c924e818d98cc0d0c418,
|
||||
type: 3}
|
||||
propertyPath: m_LocalPosition.y
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 5985191620957555646, guid: 1152d1ec7ec6c924e818d98cc0d0c418,
|
||||
type: 3}
|
||||
propertyPath: m_LocalPosition.z
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 5985191620957555646, guid: 1152d1ec7ec6c924e818d98cc0d0c418,
|
||||
type: 3}
|
||||
propertyPath: m_LocalRotation.w
|
||||
value: 1
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 5985191620957555646, guid: 1152d1ec7ec6c924e818d98cc0d0c418,
|
||||
type: 3}
|
||||
propertyPath: m_LocalRotation.x
|
||||
value: -0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 5985191620957555646, guid: 1152d1ec7ec6c924e818d98cc0d0c418,
|
||||
type: 3}
|
||||
propertyPath: m_LocalRotation.y
|
||||
value: -0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 5985191620957555646, guid: 1152d1ec7ec6c924e818d98cc0d0c418,
|
||||
type: 3}
|
||||
propertyPath: m_LocalRotation.z
|
||||
value: -0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 5985191620957555646, guid: 1152d1ec7ec6c924e818d98cc0d0c418,
|
||||
type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.x
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 5985191620957555646, guid: 1152d1ec7ec6c924e818d98cc0d0c418,
|
||||
type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.y
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 5985191620957555646, guid: 1152d1ec7ec6c924e818d98cc0d0c418,
|
||||
type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.z
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 9045886366396627694, guid: 1152d1ec7ec6c924e818d98cc0d0c418,
|
||||
type: 3}
|
||||
propertyPath: m_Name
|
||||
value: DesktopReticle
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 9045886366396627694, guid: 1152d1ec7ec6c924e818d98cc0d0c418,
|
||||
type: 3}
|
||||
propertyPath: m_IsActive
|
||||
value: 1
|
||||
objectReference: {fileID: 0}
|
||||
m_RemovedComponents: []
|
||||
m_RemovedGameObjects: []
|
||||
m_AddedGameObjects: []
|
||||
m_AddedComponents: []
|
||||
m_SourcePrefab: {fileID: 100100000, guid: 1152d1ec7ec6c924e818d98cc0d0c418, type: 3}
|
||||
--- !u!114 &7639268120162917090 stripped
|
||||
MonoBehaviour:
|
||||
m_CorrespondingSourceObject: {fileID: 5324232520253109084, guid: 1152d1ec7ec6c924e818d98cc0d0c418,
|
||||
type: 3}
|
||||
m_PrefabInstance: {fileID: 2587133980147067326}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d04f5e2ca86a6fe48854dbfe994387e2, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
--- !u!4 &8136021783709213184 stripped
|
||||
Transform:
|
||||
m_CorrespondingSourceObject: {fileID: 5985191620957555646, guid: 1152d1ec7ec6c924e818d98cc0d0c418,
|
||||
type: 3}
|
||||
m_PrefabInstance: {fileID: 2587133980147067326}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
--- !u!1001 &5614778402216200928
|
||||
PrefabInstance:
|
||||
m_ObjectHideFlags: 0
|
||||
serializedVersion: 2
|
||||
m_Modification:
|
||||
serializedVersion: 3
|
||||
m_TransformParent: {fileID: 4166223426551178936}
|
||||
m_Modifications:
|
||||
- target: {fileID: 1598447951629261349, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Name
|
||||
value: Avatar
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 8685200476950124940, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_RootOrder
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 8685200476950124940, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_LocalPosition.x
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 8685200476950124940, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_LocalPosition.y
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 8685200476950124940, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_LocalPosition.z
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 8685200476950124940, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_LocalRotation.w
|
||||
value: 1
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 8685200476950124940, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_LocalRotation.x
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 8685200476950124940, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_LocalRotation.y
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 8685200476950124940, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_LocalRotation.z
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 8685200476950124940, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.x
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 8685200476950124940, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.y
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 8685200476950124940, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.z
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
m_RemovedComponents: []
|
||||
m_RemovedGameObjects: []
|
||||
m_AddedGameObjects: []
|
||||
m_AddedComponents: []
|
||||
m_SourcePrefab: {fileID: 100100000, guid: 5af4354a65e661241b77548083612a12, type: 3}
|
||||
--- !u!4 &3847117398369604460 stripped
|
||||
Transform:
|
||||
m_CorrespondingSourceObject: {fileID: 8685200476950124940, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
m_PrefabInstance: {fileID: 5614778402216200928}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
--- !u!114 &8965323867813198036 stripped
|
||||
MonoBehaviour:
|
||||
m_CorrespondingSourceObject: {fileID: 3567002345054663220, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
m_PrefabInstance: {fileID: 5614778402216200928}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: ac1020b347eeb4e45afabd4d605aa3ae, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
@@ -0,0 +1,945 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!1 &1537256436979219201
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 7351285468603948201}
|
||||
- component: {fileID: 7511706412250944283}
|
||||
- component: {fileID: 2985790521629584760}
|
||||
- component: {fileID: 2463460427327521799}
|
||||
m_Layer: 9
|
||||
m_Name: ClientSimPlayerRemote
|
||||
m_TagString: EditorOnly
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!4 &7351285468603948201
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1537256436979219201}
|
||||
serializedVersion: 2
|
||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_ConstrainProportionsScale: 0
|
||||
m_Children:
|
||||
- {fileID: 7897631054902746547}
|
||||
m_Father: {fileID: 0}
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!114 &7511706412250944283
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1537256436979219201}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: a0d02ab56371a09488276de93c16f8de, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
playerController: {fileID: 0}
|
||||
stationManager: {fileID: 0}
|
||||
playerRaycaster: {fileID: 0}
|
||||
playerTrackingData: {fileID: 0}
|
||||
playerAvatar: {fileID: 2635322609852478987}
|
||||
reticle: {fileID: 0}
|
||||
isInstanceOwner: 0
|
||||
locomotionData:
|
||||
walkSpeed: 2
|
||||
strafeSpeed: 2
|
||||
runSpeed: 4
|
||||
jumpSpeed: 0
|
||||
gravityStrength: 1
|
||||
immobilized: 0
|
||||
useLegacyLocomotion: 0
|
||||
pickupData:
|
||||
pickupsEnabled: 1
|
||||
audioData:
|
||||
voiceVolumetricRadius: 0
|
||||
voiceDistanceNear: 0
|
||||
voiceDistanceFar: 25
|
||||
voiceGain: 15
|
||||
voiceLowpass: 0
|
||||
avatarAudioVolumetricRadius: 0
|
||||
avatarAudioNearRadius: 0
|
||||
avatarAudioFarRadius: 0
|
||||
avatarAudioGain: 0
|
||||
avatarAudioCustomCurve: 0
|
||||
avatarAudioForceSpatial: 0
|
||||
PlayerPersistenceObjects: []
|
||||
PlayerDataPrefab: {fileID: 6125864761777863447, guid: adab318f0eade724288895ff018778fb,
|
||||
type: 3}
|
||||
--- !u!54 &2985790521629584760
|
||||
Rigidbody:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1537256436979219201}
|
||||
serializedVersion: 4
|
||||
m_Mass: 1
|
||||
m_Drag: 0
|
||||
m_AngularDrag: 0.05
|
||||
m_CenterOfMass: {x: 0, y: 0, z: 0}
|
||||
m_InertiaTensor: {x: 1, y: 1, z: 1}
|
||||
m_InertiaRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_IncludeLayers:
|
||||
serializedVersion: 2
|
||||
m_Bits: 0
|
||||
m_ExcludeLayers:
|
||||
serializedVersion: 2
|
||||
m_Bits: 0
|
||||
m_ImplicitCom: 1
|
||||
m_ImplicitTensor: 1
|
||||
m_UseGravity: 0
|
||||
m_IsKinematic: 1
|
||||
m_Interpolate: 0
|
||||
m_Constraints: 0
|
||||
m_CollisionDetection: 0
|
||||
--- !u!135 &2463460427327521799
|
||||
SphereCollider:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1537256436979219201}
|
||||
m_Material: {fileID: 0}
|
||||
m_IncludeLayers:
|
||||
serializedVersion: 2
|
||||
m_Bits: 0
|
||||
m_ExcludeLayers:
|
||||
serializedVersion: 2
|
||||
m_Bits: 0
|
||||
m_LayerOverridePriority: 0
|
||||
m_IsTrigger: 0
|
||||
m_ProvidesContacts: 0
|
||||
m_Enabled: 1
|
||||
serializedVersion: 3
|
||||
m_Radius: 0.5
|
||||
m_Center: {x: 0, y: 0, z: 0}
|
||||
--- !u!1001 &1518278535141655615
|
||||
PrefabInstance:
|
||||
m_ObjectHideFlags: 0
|
||||
serializedVersion: 2
|
||||
m_Modification:
|
||||
serializedVersion: 3
|
||||
m_TransformParent: {fileID: 7351285468603948201}
|
||||
m_Modifications:
|
||||
- target: {fileID: 51700705522361369, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 57281555496777636, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 61827511718336761, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 143040204301124773, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 212680500747593489, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 234120955347107956, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 243255165395375408, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 316526116120196303, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 331586635287323177, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 363679502572192786, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 396324510710813100, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 503616225980730403, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 536128071538691081, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 609004868342532017, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 900681720268609620, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 996494433526455843, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 1454798627109954381, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 1475277595053209008, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 1598447951629261349, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Name
|
||||
value: ClientSimAvatar
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 1598447951629261349, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 1598447951629261349, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_TagString
|
||||
value: Untagged
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 1651829169185442421, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 1951021947789299485, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2355763680981815452, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2443719485332969598, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2464424136927435255, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2866791069464541814, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2935886576359325062, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034688, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034690, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034692, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034694, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034696, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034698, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034700, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034702, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034704, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034706, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034708, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034710, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034712, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034714, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034716, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034718, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034720, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034722, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034724, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034726, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034728, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034730, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034732, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034734, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034736, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034738, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034740, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034742, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034744, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034746, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034748, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034750, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034784, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034786, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034788, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034790, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034792, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034794, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034796, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034798, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034800, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034802, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034804, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034806, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034808, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034810, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034812, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034814, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034880, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034882, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034884, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034886, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034888, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034890, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034892, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034894, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034896, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034898, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034900, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034902, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034904, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034906, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034908, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034910, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034932, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034934, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034936, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034938, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034940, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2978344480332034942, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2998850906544274221, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 3035531133741133065, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 3073514225957906058, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 3389410902529831055, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 3626948349544576132, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 3709661366446337615, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 4085266273839675937, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 4179880122923826784, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 4278910699096641955, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 4310597111129422724, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 4436994379424499046, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 4454030566198521614, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 4497549614248467919, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 4631652004421795168, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 4750669937633289195, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 4895106003660026642, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 5104200179952910403, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 5126106134105468911, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 5163558118767627432, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 5194159077511967883, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 5392201885149606038, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 5466005370426675307, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 5539621833653619192, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 5625264026350331477, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 5776836449214148501, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 5971619695756494619, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 6099384556597488609, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 6314921661946145678, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 6415951998510585722, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 6484397029732303152, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 6898971757323806061, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 6922741178497047169, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 6990918603388964841, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 7116403949930860806, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 7128787497366646663, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 7168643812333781402, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 7192254396171280651, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 7398541149430602413, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 7643868673190464615, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 7764908685473818086, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 7928591049666968120, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 8042752074059162872, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 8106157499508801155, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 8495668027978920181, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 8648325962951316383, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 8663180454507295493, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 8675888026752493474, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 8685200476950124940, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_RootOrder
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 8685200476950124940, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_LocalPosition.x
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 8685200476950124940, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_LocalPosition.y
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 8685200476950124940, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_LocalPosition.z
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 8685200476950124940, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_LocalRotation.w
|
||||
value: 1
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 8685200476950124940, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_LocalRotation.x
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 8685200476950124940, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_LocalRotation.y
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 8685200476950124940, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_LocalRotation.z
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 8685200476950124940, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.x
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 8685200476950124940, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.y
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 8685200476950124940, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.z
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 8915764382206840742, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
propertyPath: m_Layer
|
||||
value: 9
|
||||
objectReference: {fileID: 0}
|
||||
m_RemovedComponents: []
|
||||
m_RemovedGameObjects: []
|
||||
m_AddedGameObjects: []
|
||||
m_AddedComponents: []
|
||||
m_SourcePrefab: {fileID: 100100000, guid: 5af4354a65e661241b77548083612a12, type: 3}
|
||||
--- !u!114 &2635322609852478987 stripped
|
||||
MonoBehaviour:
|
||||
m_CorrespondingSourceObject: {fileID: 3567002345054663220, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
m_PrefabInstance: {fileID: 1518278535141655615}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: ac1020b347eeb4e45afabd4d605aa3ae, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
--- !u!4 &7897631054902746547 stripped
|
||||
Transform:
|
||||
m_CorrespondingSourceObject: {fileID: 8685200476950124940, guid: 5af4354a65e661241b77548083612a12,
|
||||
type: 3}
|
||||
m_PrefabInstance: {fileID: 1518278535141655615}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
@@ -0,0 +1,49 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!1 &8678403560659888956
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 8042128741019755946}
|
||||
- component: {fileID: 1804197391798486062}
|
||||
m_Layer: 0
|
||||
m_Name: ClientSimPlayerSpawner
|
||||
m_TagString: EditorOnly
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!4 &8042128741019755946
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 8678403560659888956}
|
||||
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_Children: []
|
||||
m_Father: {fileID: 0}
|
||||
m_RootOrder: 0
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!114 &1804197391798486062
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 8678403560659888956}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 79164cc4f26063f4db9016f803a7263d, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
localPlayerPrefab: {fileID: 1520368773658574567, guid: ca8797bd0f7934e4e98fd29962c732cc,
|
||||
type: 3}
|
||||
remotePlayerPrefab: {fileID: 1537256436979219201, guid: 491f38c4a78d62d42803470bba41c5f6,
|
||||
type: 3}
|
||||
@@ -0,0 +1,77 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!1 &1211698646162851569
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 1270477545467188765}
|
||||
- component: {fileID: 4390301351477643234}
|
||||
m_Layer: 0
|
||||
m_Name: ClientSimProxyObjects
|
||||
m_TagString: EditorOnly
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!4 &1270477545467188765
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1211698646162851569}
|
||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_Children:
|
||||
- {fileID: 5727241432443995697}
|
||||
m_Father: {fileID: 0}
|
||||
m_RootOrder: 0
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!114 &4390301351477643234
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1211698646162851569}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: a70a3c6d92e24dd489cdd7b4d138a17e, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
cameraProxy: {fileID: 5727241432443995697}
|
||||
--- !u!1 &4495702240474092589
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 5727241432443995697}
|
||||
m_Layer: 0
|
||||
m_Name: CameraProxy
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!4 &5727241432443995697
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 4495702240474092589}
|
||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_Children: []
|
||||
m_Father: {fileID: 1270477545467188765}
|
||||
m_RootOrder: 0
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
@@ -0,0 +1,45 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!1 &7821683065046545810
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 1113984425070369126}
|
||||
- component: {fileID: 4087116577960168831}
|
||||
m_Layer: 0
|
||||
m_Name: ClientSimSyncedObjectManager
|
||||
m_TagString: EditorOnly
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!4 &1113984425070369126
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 7821683065046545810}
|
||||
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_Children: []
|
||||
m_Father: {fileID: 0}
|
||||
m_RootOrder: 0
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!114 &4087116577960168831
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 7821683065046545810}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: f0bd9a5f625c4c04bd9862b62b57f431, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||