Commit ab35b1db authored by wanqing's avatar wanqing

增加手势

parent a19c55c9
......@@ -27,6 +27,7 @@ public class BattleUI : MonoBehaviour
public Text m_cameraPosY;
public Text m_cameraFieldView;
public GameObject m_battleObj;//战斗UI
public GameObject m_mouseObj;//手势UI
public Action onStartBtn;
public Action onPosUpBtn;
public Action onPosDownBtn;
......@@ -180,4 +181,13 @@ public class BattleUI : MonoBehaviour
{
m_battleObj.SetActive(bool_);
}
//设置手势位置
public void SetMousePos(float x,float y)
{
m_mouseObj.SetActive(x != 0 || y != 0);
Vector2 varVec2 = m_mouseObj.transform.localPosition;
varVec2.x = x;
varVec2.y = y;
m_mouseObj.transform.localPosition = varVec2;
}
}
......@@ -103,7 +103,7 @@ public class ChainRopeView : MonoBehaviour
{
GameServices.inputService.pad.onMoveVec3 += OnMove;
GameServices.inputService.pad.onTouchUp += OnTouchUp;
//GameServices.inputService.pad.onClickDown += OnClickDown;
GameServices.inputService.pad.onClickDown += OnClickDown;
//GameServices.inputService.joyStick.JoystickMoveHandle += JoystickHandle;
//GameServices.inputService.joyStick.JoystickEndHandle += JoystickEndHandle;
SetJoyStickDirectTrans(m_topCollider.transform);
......@@ -121,17 +121,17 @@ public class ChainRopeView : MonoBehaviour
//按下鼠标
void OnClickDown()
{
//float varX = Input.mousePosition.x - Screen.width / 2f;
//float varY = Input.mousePosition.y - Screen.height / 2f;
//Vector2 varVec2 = GameServices.inputService.joyStick.gameObject.transform.localPosition;
//varVec2.x = varX;
//varVec2.y = varY;
//GameServices.inputService.joyStick.gameObject.transform.localPosition = varVec2;
float varX = Input.mousePosition.x - Screen.width / 2f;
float varY = Input.mousePosition.y - Screen.height / 2f;
BattleCtrl.instance.battleUI.SetMousePos(varX, varY);
}
//移动
void OnMove(Vector3 dir)
{
float varX = Input.mousePosition.x - Screen.width / 2f;
float varY = Input.mousePosition.y - Screen.height / 2f;
BattleCtrl.instance.battleUI.SetMousePos(varX, varY);
if (!BattleCtrl.instance.isStartBattle)
{
return;
......@@ -220,6 +220,7 @@ public class ChainRopeView : MonoBehaviour
// 抬起回调
void OnTouchUp()
{
BattleCtrl.instance.battleUI.SetMousePos(0,0);
if (!BattleCtrl.instance.isStartBattle)
{
return;
......@@ -430,7 +431,7 @@ public class ChainRopeView : MonoBehaviour
{
GameServices.inputService.pad.onMoveVec3 -= OnMove;
GameServices.inputService.pad.onTouchUp -= OnTouchUp;
//GameServices.inputService.pad.onClickDown -= OnClickDown;
GameServices.inputService.pad.onClickDown -= OnClickDown;
}
DestroyImmediate(blueprint);
DetachHook();
......
......@@ -4380,6 +4380,7 @@ RectTransform:
- {fileID: 6064464678343489378}
- {fileID: 141872499}
- {fileID: 767122297}
- {fileID: 4852413556718236688}
m_Father: {fileID: 0}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
......@@ -4480,6 +4481,7 @@ MonoBehaviour:
m_cameraPosY: {fileID: 5895000170980641242}
m_cameraFieldView: {fileID: 6724524176756519148}
m_battleObj: {fileID: 6064464676328073066}
m_mouseObj: {fileID: 7975587463478854421}
--- !u!114 &1995691973
MonoBehaviour:
m_ObjectHideFlags: 0
......@@ -10877,6 +10879,80 @@ MonoBehaviour:
m_VerticalOverflow: 0
m_LineSpacing: 1
m_Text: Button
--- !u!1 &7975587463478854421
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 4852413556718236688}
- component: {fileID: 3934230584123945970}
- component: {fileID: 6152381190889476816}
m_Layer: 5
m_Name: Mouse
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 0
--- !u!224 &4852413556718236688
RectTransform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 7975587463478854421}
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: 6064464677632144690}
m_RootOrder: 9
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.5, y: 0.5}
m_AnchorMax: {x: 0.5, y: 0.5}
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 455, y: 538}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &3934230584123945970
CanvasRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 7975587463478854421}
m_CullTransparentMesh: 0
--- !u!114 &6152381190889476816
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 7975587463478854421}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_RaycastTarget: 0
m_Maskable: 0
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_Sprite: {fileID: 21300000, guid: d9a4009ec8b5f26459ef82e44026d54f, type: 3}
m_Type: 0
m_PreserveAspect: 0
m_FillCenter: 1
m_FillMethod: 4
m_FillAmount: 1
m_FillClockwise: 1
m_FillOrigin: 0
m_UseSpriteMesh: 0
m_PixelsPerUnitMultiplier: 1
--- !u!1 &8785698347163823155
GameObject:
m_ObjectHideFlags: 0
......
fileFormatVersion: 2
guid: d9a4009ec8b5f26459ef82e44026d54f
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: -1
aniso: -1
mipBias: -100
wrapU: 1
wrapV: 1
wrapW: -1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: 47
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 1
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: WebGL
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
......@@ -13,30 +13,25 @@ MonoBehaviour:
m_Name: Freightlift cable
m_EditorClassIdentifier:
m_Empty: 0
m_ActiveParticleCount: 18
m_InitialActiveParticleCount: 18
m_ActiveParticleCount: 13
m_InitialActiveParticleCount: 13
_bounds:
m_Center: {x: 0, y: 0, z: 0}
m_Extent: {x: 1, y: 0, z: 0}
m_Center: {x: -0.25829864, y: -0.000000046098368, z: 0}
m_Extent: {x: 0.74170136, y: 0.000000046098368, z: 0}
positions:
- {x: -1, y: 0, z: 0}
- {x: -0.88329995, y: 0, z: 0}
- {x: -0.7666023, y: 0, z: 0}
- {x: -0.64810616, y: 0, z: 0}
- {x: -0.5307922, y: 0, z: 0}
- {x: -0.41302353, y: 0, z: 0}
- {x: -0.2951497, y: 0, z: 0}
- {x: -0.17727831, y: 0, z: 0}
- {x: -0.05943318, y: 0, z: 0}
- {x: 0.058380906, y: 0, z: 0}
- {x: 0.17615423, y: 0, z: 0}
- {x: 0.29385144, y: 0, z: 0}
- {x: 0.41156584, y: 0, z: 0}
- {x: 0.5296772, y: 0, z: 0}
- {x: 0.6477824, y: 0, z: 0}
- {x: 0.76508003, y: 0, z: 0}
- {x: 0.88362336, y: 0, z: 0}
- {x: 1, y: 0, z: 0}
- {x: -0.7591829, y: -0.0000000021347286, z: 0}
- {x: -0.63503057, y: -0.0000000074502915, z: 0}
- {x: -0.5106841, y: -0.000000014912136, z: 0}
- {x: -0.3863179, y: -0.000000023879155, z: 0}
- {x: -0.26201737, y: -0.0000000339038, z: 0}
- {x: -0.13768575, y: -0.000000044645763, z: 0}
- {x: -0.013558164, y: -0.000000055765465, z: 0}
- {x: 0.110923596, y: -0.000000066961164, z: 0}
- {x: 0.23529726, y: -0.000000077700236, z: 0}
- {x: 0.3591952, y: -0.000000087039105, z: 0}
- {x: 0.4834028, y: -0.000000092196736, z: 0}
- {x: 0, y: 0, z: 0}
- {x: 0, y: 0, z: 0}
- {x: 0, y: 0, z: 0}
......@@ -140,22 +135,17 @@ MonoBehaviour:
restPositions:
- {x: -1, y: 0, z: 0, w: 1}
- {x: -0.88329995, y: 0, z: 0, w: 1}
- {x: -0.7666023, y: 0, z: 0, w: 1}
- {x: -0.64810616, y: 0, z: 0, w: 1}
- {x: -0.5307922, y: 0, z: 0, w: 1}
- {x: -0.41302353, y: 0, z: 0, w: 1}
- {x: -0.2951497, y: 0, z: 0, w: 1}
- {x: -0.17727831, y: 0, z: 0, w: 1}
- {x: -0.05943318, y: 0, z: 0, w: 1}
- {x: 0.058380906, y: 0, z: 0, w: 1}
- {x: 0.17615423, y: 0, z: 0, w: 1}
- {x: 0.29385144, y: 0, z: 0, w: 1}
- {x: 0.41156584, y: 0, z: 0, w: 1}
- {x: 0.5296772, y: 0, z: 0, w: 1}
- {x: 0.6477824, y: 0, z: 0, w: 1}
- {x: 0.76508003, y: 0, z: 0, w: 1}
- {x: 0.88362336, y: 0, z: 0, w: 1}
- {x: 1, y: 0, z: 0, w: 1}
- {x: -0.7591829, y: -0.0000000021347286, z: 0, w: 1}
- {x: -0.63503057, y: -0.0000000074502915, z: 0, w: 1}
- {x: -0.5106841, y: -0.000000014912136, z: 0, w: 1}
- {x: -0.3863179, y: -0.000000023879155, z: 0, w: 1}
- {x: -0.26201737, y: -0.0000000339038, z: 0, w: 1}
- {x: -0.13768575, y: -0.000000044645763, z: 0, w: 1}
- {x: -0.013558164, y: -0.000000055765465, z: 0, w: 1}
- {x: 0.110923596, y: -0.000000066961164, z: 0, w: 1}
- {x: 0.23529726, y: -0.000000077700236, z: 0, w: 1}
- {x: 0.3591952, y: -0.000000087039105, z: 0, w: 1}
- {x: 0.4834028, y: -0.000000092196736, z: 0, w: 1}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
......@@ -372,18 +362,8 @@ MonoBehaviour:
- {x: 0, y: 0, z: 0}
- {x: 0, y: 0, z: 0}
- {x: 0, y: 0, z: 0}
- {x: 0, y: 0, z: 0}
- {x: 0, y: 0, z: 0}
- {x: 0, y: 0, z: 0}
- {x: 0, y: 0, z: 0}
- {x: 0, y: 0, z: 0}
angularVelocities: []
invMasses:
- 1
- 10
- 10
- 10
- 10
- 10
- 10
- 10
......@@ -498,7 +478,7 @@ MonoBehaviour:
- 0
- 0
invRotationalMasses: []
phases: 00000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
phases: 0000000001000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
principalRadii:
- {x: 0.05, y: 0.05, z: 0.05}
- {x: 0.05, y: 0.05, z: 0.05}
......@@ -513,11 +493,6 @@ MonoBehaviour:
- {x: 0.05, y: 0.05, z: 0.05}
- {x: 0.05, y: 0.05, z: 0.05}
- {x: 0.05, y: 0.05, z: 0.05}
- {x: 0.05, y: 0.05, z: 0.05}
- {x: 0.05, y: 0.05, z: 0.05}
- {x: 0.05, y: 0.05, z: 0.05}
- {x: 0.05, y: 0.05, z: 0.05}
- {x: 0.05, y: 0.05, z: 0.05}
- {x: 0, y: 0, z: 0}
- {x: 0, y: 0, z: 0}
- {x: 0, y: 0, z: 0}
......@@ -632,11 +607,6 @@ MonoBehaviour:
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 1, g: 1, b: 1, a: 1}
- {r: 0, g: 0, b: 0, a: 0}
- {r: 0, g: 0, b: 0, a: 0}
- {r: 0, g: 0, b: 0, a: 0}
......@@ -739,26 +709,23 @@ MonoBehaviour:
- {r: 0, g: 0, b: 0, a: 0}
distanceConstraintsData:
batches:
- m_IDs: 000000000100000002000000030000000400000005000000060000000700000008000000090000000a0000000b0000000c0000000d0000000e0000000f000000100000001100000012000000130000001400000015000000160000001700000018000000190000001a0000001b0000001c0000001d0000001e0000001f000000200000002100000022000000230000002400000025000000260000002700000028000000290000002a0000002b0000002c0000002d0000002e0000002f000000300000003100000032000000330000003400000035000000360000003700000038000000390000003a000000
m_IDToIndex: 000000000100000002000000030000000400000005000000060000000700000008000000090000000a0000000b0000000c0000000d0000000e0000000f000000100000001100000012000000130000001400000015000000160000001700000018000000190000001a0000001b0000001c0000001d0000001e0000001f000000200000002100000022000000230000002400000025000000260000002700000028000000290000002a0000002b0000002c0000002d0000002e0000002f000000300000003100000032000000330000003400000035000000360000003700000038000000390000003a000000
m_ConstraintCount: 59
m_ActiveConstraintCount: 9
m_InitialActiveConstraintCount: 9
- m_IDs: 000000000100000002000000030000000400000005000000060000000700000008000000090000000a0000000b0000000c0000000d0000000e0000000f000000100000001100000012000000130000001400000015000000160000001700000018000000190000001a0000001b0000001c0000001d0000001e0000001f000000200000002100000022000000230000002400000025000000260000002700000028000000290000002a0000002b0000002c0000002d0000002e0000002f0000003000000031000000320000003300000034000000350000003600000037000000
m_IDToIndex: 000000000100000002000000030000000400000005000000060000000700000008000000090000000a0000000b0000000c0000000d0000000e0000000f000000100000001100000012000000130000001400000015000000160000001700000018000000190000001a0000001b0000001c0000001d0000001e0000001f000000200000002100000022000000230000002400000025000000260000002700000028000000290000002a0000002b0000002c0000002d0000002e0000002f0000003000000031000000320000003300000034000000350000003600000037000000
m_ConstraintCount: 56
m_ActiveConstraintCount: 6
m_InitialActiveConstraintCount: 6
particleIndices:
serializedContents: 000000000100000002000000030000000400000005000000060000000700000008000000090000000a0000000b0000000c0000000d0000000e0000000f000000100000001100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
serializedContents: 000000000100000002000000030000000400000005000000060000000700000008000000090000000a0000000b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
lambdas:
serializedContents: []
restLengths:
serializedContents:
- 0.11670005
- 0.11849612
- 0.117768645
- 0.1178714
- 0.11781409
- 0.11769721
- 0.11811137
- 0.11729765
- 0.11637664
- 0.1241523
- 0.124366164
- 0.12433162
- 0.12448176
- 0.12389794
- 0
- 0
- 0
......@@ -867,28 +834,23 @@ MonoBehaviour:
- {x: 0, y: 0}
- {x: 0, y: 0}
- {x: 0, y: 0}
- {x: 0, y: 0}
- {x: 0, y: 0}
- {x: 0, y: 0}
- m_IDs: 000000000100000002000000030000000400000005000000060000000700000008000000090000000a0000000b0000000c0000000d0000000e0000000f000000100000001100000012000000130000001400000015000000160000001700000018000000190000001a0000001b0000001c0000001d0000001e0000001f000000200000002100000022000000230000002400000025000000260000002700000028000000290000002a0000002b0000002c0000002d0000002e0000002f00000030000000310000003200000033000000340000003500000036000000370000003800000039000000
m_IDToIndex: 000000000100000002000000030000000400000005000000060000000700000008000000090000000a0000000b0000000c0000000d0000000e0000000f000000100000001100000012000000130000001400000015000000160000001700000018000000190000001a0000001b0000001c0000001d0000001e0000001f000000200000002100000022000000230000002400000025000000260000002700000028000000290000002a0000002b0000002c0000002d0000002e0000002f00000030000000310000003200000033000000340000003500000036000000370000003800000039000000
m_ConstraintCount: 58
m_ActiveConstraintCount: 8
m_InitialActiveConstraintCount: 8
- m_IDs: 000000000100000002000000030000000400000005000000060000000700000008000000090000000a0000000b0000000c0000000d0000000e0000000f000000100000001100000012000000130000001400000015000000160000001700000018000000190000001a0000001b0000001c0000001d0000001e0000001f000000200000002100000022000000230000002400000025000000260000002700000028000000290000002a0000002b0000002c0000002d0000002e0000002f0000003000000031000000320000003300000034000000350000003600000037000000
m_IDToIndex: 000000000100000002000000030000000400000005000000060000000700000008000000090000000a0000000b0000000c0000000d0000000e0000000f000000100000001100000012000000130000001400000015000000160000001700000018000000190000001a0000001b0000001c0000001d0000001e0000001f000000200000002100000022000000230000002400000025000000260000002700000028000000290000002a0000002b0000002c0000002d0000002e0000002f0000003000000031000000320000003300000034000000350000003600000037000000
m_ConstraintCount: 56
m_ActiveConstraintCount: 6
m_InitialActiveConstraintCount: 6
particleIndices:
serializedContents: 0100000002000000030000000400000005000000060000000700000008000000090000000a0000000b0000000c0000000d0000000e0000000f0000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
serializedContents: 0100000002000000030000000400000005000000060000000700000008000000090000000a0000000b0000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
lambdas:
serializedContents: []
restLengths:
serializedContents:
- 0.11669767
- 0.11731398
- 0.11787382
- 0.11784513
- 0.117773324
- 0.117714405
- 0.11810517
- 0.11854333
- 0.12411708
- 0.124346495
- 0.12430054
- 0.12412758
- 0.12437367
- 0.124207586
- 0
- 0
- 0
......@@ -997,28 +959,24 @@ MonoBehaviour:
- {x: 0, y: 0}
- {x: 0, y: 0}
- {x: 0, y: 0}
- {x: 0, y: 0}
- {x: 0, y: 0}
bendConstraintsData:
batches:
- m_IDs: 000000000100000002000000030000000400000005000000060000000700000008000000090000000a0000000b0000000c0000000d0000000e0000000f000000100000001100000012000000130000001400000015000000160000001700000018000000190000001a0000001b0000001c0000001d0000001e0000001f00000020000000210000002200000023000000240000002500000026000000
m_IDToIndex: 000000000100000002000000030000000400000005000000060000000700000008000000090000000a0000000b0000000c0000000d0000000e0000000f000000100000001100000012000000130000001400000015000000160000001700000018000000190000001a0000001b0000001c0000001d0000001e0000001f00000020000000210000002200000023000000240000002500000026000000
m_ConstraintCount: 39
m_ActiveConstraintCount: 6
m_InitialActiveConstraintCount: 6
- m_IDs: 000000000100000002000000030000000400000005000000060000000700000008000000090000000a0000000b0000000c0000000d0000000e0000000f000000100000001100000012000000130000001400000015000000160000001700000018000000190000001a0000001b0000001c0000001d0000001e0000001f0000002000000021000000220000002300000024000000
m_IDToIndex: 000000000100000002000000030000000400000005000000060000000700000008000000090000000a0000000b0000000c0000000d0000000e0000000f000000100000001100000012000000130000001400000015000000160000001700000018000000190000001a0000001b0000001c0000001d0000001e0000001f0000002000000021000000220000002300000024000000
m_ConstraintCount: 37
m_ActiveConstraintCount: 4
m_InitialActiveConstraintCount: 4
particleIndices:
serializedContents: 000000000200000001000000030000000500000004000000060000000800000007000000090000000b0000000a0000000c0000000e0000000d0000000f0000001100000010000000120000001400000013000000150000001700000016000000180000001a000000190000001b0000001d0000001c0000001e000000200000001f0000002100000023000000220000002400000026000000250000002700000029000000280000002a0000002c0000002b0000002d0000002f0000002e000000300000003200000031000000330000003500000034000000360000003800000037000000390000003b0000003a0000003c0000003e0000003d0000003f0000004100000040000000420000004400000043000000450000004700000046000000480000004a000000490000004b0000004d0000004c0000004e000000500000004f0000005100000053000000520000005400000056000000550000005700000059000000580000005a0000005c0000005b0000005d0000005f0000005e000000600000006200000061000000630000006500000064000000660000006800000067000000690000006b0000006a0000006c0000006e0000006d0000006f0000007100000070000000720000007400000073000000
serializedContents: 000000000200000001000000030000000500000004000000060000000800000007000000090000000b0000000a0000000c0000000e0000000d0000000f0000001100000010000000120000001400000013000000150000001700000016000000180000001a000000190000001b0000001d0000001c0000001e000000200000001f0000002100000023000000220000002400000026000000250000002700000029000000280000002a0000002c0000002b0000002d0000002f0000002e000000300000003200000031000000330000003500000034000000360000003800000037000000390000003b0000003a0000003c0000003e0000003d0000003f0000004100000040000000420000004400000043000000450000004700000046000000480000004a000000490000004b0000004d0000004c0000004e000000500000004f0000005100000053000000520000005400000056000000550000005700000059000000580000005a0000005c0000005b0000005d0000005f0000005e000000600000006200000061000000630000006500000064000000660000006800000067000000690000006b0000006a0000006c0000006e0000006d000000
lambdas:
serializedContents: []
restBends:
serializedContents:
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0.002472341
- 0.000006556511
- 0.0000680089
- 0.00015856326
- 0.16113426
- 0
- 0
- 0
......@@ -1090,25 +1048,21 @@ MonoBehaviour:
- {x: 0, y: 0}
- {x: 0, y: 0}
- {x: 0, y: 0}
- {x: 0, y: 0}
- {x: 0, y: 0}
- m_IDs: 000000000100000002000000030000000400000005000000060000000700000008000000090000000a0000000b0000000c0000000d0000000e0000000f000000100000001100000012000000130000001400000015000000160000001700000018000000190000001a0000001b0000001c0000001d0000001e0000001f00000020000000210000002200000023000000240000002500000026000000
m_IDToIndex: 000000000100000002000000030000000400000005000000060000000700000008000000090000000a0000000b0000000c0000000d0000000e0000000f000000100000001100000012000000130000001400000015000000160000001700000018000000190000001a0000001b0000001c0000001d0000001e0000001f00000020000000210000002200000023000000240000002500000026000000
m_ConstraintCount: 39
m_ActiveConstraintCount: 5
m_InitialActiveConstraintCount: 5
- m_IDs: 000000000100000002000000030000000400000005000000060000000700000008000000090000000a0000000b0000000c0000000d0000000e0000000f000000100000001100000012000000130000001400000015000000160000001700000018000000190000001a0000001b0000001c0000001d0000001e0000001f0000002000000021000000220000002300000024000000
m_IDToIndex: 000000000100000002000000030000000400000005000000060000000700000008000000090000000a0000000b0000000c0000000d0000000e0000000f000000100000001100000012000000130000001400000015000000160000001700000018000000190000001a0000001b0000001c0000001d0000001e0000001f0000002000000021000000220000002300000024000000
m_ConstraintCount: 37
m_ActiveConstraintCount: 4
m_InitialActiveConstraintCount: 4
particleIndices:
serializedContents: 0100000003000000020000000400000006000000050000000700000009000000080000000a0000000c0000000b0000000d0000000f0000000e000000100000001200000011000000130000001500000014000000160000001800000017000000190000001b0000001a0000001c0000001e0000001d0000001f0000002100000020000000220000002400000023000000250000002700000026000000280000002a000000290000002b0000002d0000002c0000002e000000300000002f0000003100000033000000320000003400000036000000350000003700000039000000380000003a0000003c0000003b0000003d0000003f0000003e000000400000004200000041000000430000004500000044000000460000004800000047000000490000004b0000004a0000004c0000004e0000004d0000004f0000005100000050000000520000005400000053000000550000005700000056000000580000005a000000590000005b0000005d0000005c0000005e000000600000005f0000006100000063000000620000006400000066000000650000006700000069000000680000006a0000006c0000006b0000006d0000006f0000006e000000700000007200000071000000730000007500000074000000
serializedContents: 0100000003000000020000000400000006000000050000000700000009000000080000000a0000000c0000000b0000000d0000000f0000000e000000100000001200000011000000130000001500000014000000160000001800000017000000190000001b0000001a0000001c0000001e0000001d0000001f0000002100000020000000220000002400000023000000250000002700000026000000280000002a000000290000002b0000002d0000002c0000002e000000300000002f0000003100000033000000320000003400000036000000350000003700000039000000380000003a0000003c0000003b0000003d0000003f0000003e000000400000004200000041000000430000004500000044000000460000004800000047000000490000004b0000004a0000004c0000004e0000004d0000004f0000005100000050000000520000005400000053000000550000005700000056000000580000005a000000590000005b0000005d0000005c0000005e000000600000005f0000006100000063000000620000006400000066000000650000006700000069000000680000006a0000006c0000006b0000006d0000006f0000006e000000
lambdas:
serializedContents: []
restBends:
serializedContents:
- 0
- 0
- 0
- 0
- 0
- 0
- 0.00001168251
- 0.000021874905
- 0.000118059106
- 0.000103235245
- 0
- 0
- 0
......@@ -1181,24 +1135,21 @@ MonoBehaviour:
- {x: 0, y: 0}
- {x: 0, y: 0}
- {x: 0, y: 0}
- {x: 0, y: 0}
- {x: 0, y: 0}
- m_IDs: 000000000100000002000000030000000400000005000000060000000700000008000000090000000a0000000b0000000c0000000d0000000e0000000f000000100000001100000012000000130000001400000015000000160000001700000018000000190000001a0000001b0000001c0000001d0000001e0000001f000000200000002100000022000000230000002400000025000000
m_IDToIndex: 000000000100000002000000030000000400000005000000060000000700000008000000090000000a0000000b0000000c0000000d0000000e0000000f000000100000001100000012000000130000001400000015000000160000001700000018000000190000001a0000001b0000001c0000001d0000001e0000001f000000200000002100000022000000230000002400000025000000
m_ConstraintCount: 38
m_ActiveConstraintCount: 5
m_InitialActiveConstraintCount: 5
- m_IDs: 000000000100000002000000030000000400000005000000060000000700000008000000090000000a0000000b0000000c0000000d0000000e0000000f000000100000001100000012000000130000001400000015000000160000001700000018000000190000001a0000001b0000001c0000001d0000001e0000001f0000002000000021000000220000002300000024000000
m_IDToIndex: 000000000100000002000000030000000400000005000000060000000700000008000000090000000a0000000b0000000c0000000d0000000e0000000f000000100000001100000012000000130000001400000015000000160000001700000018000000190000001a0000001b0000001c0000001d0000001e0000001f0000002000000021000000220000002300000024000000
m_ConstraintCount: 37
m_ActiveConstraintCount: 3
m_InitialActiveConstraintCount: 3
particleIndices:
serializedContents: 020000000400000003000000050000000700000006000000080000000a000000090000000b0000000d0000000c0000000e000000100000000f0000001100000013000000120000001400000016000000150000001700000019000000180000001a0000001c0000001b0000001d0000001f0000001e000000200000002200000021000000230000002500000024000000260000002800000027000000290000002b0000002a0000002c0000002e0000002d0000002f0000003100000030000000320000003400000033000000350000003700000036000000380000003a000000390000003b0000003d0000003c0000003e000000400000003f0000004100000043000000420000004400000046000000450000004700000049000000480000004a0000004c0000004b0000004d0000004f0000004e000000500000005200000051000000530000005500000054000000560000005800000057000000590000005b0000005a0000005c0000005e0000005d0000005f0000006100000060000000620000006400000063000000650000006700000066000000680000006a000000690000006b0000006d0000006c0000006e000000700000006f000000710000007300000072000000
serializedContents: 020000000400000003000000050000000700000006000000080000000a000000090000000b0000000d0000000c0000000e000000100000000f0000001100000013000000120000001400000016000000150000001700000019000000180000001a0000001c0000001b0000001d0000001f0000001e000000200000002200000021000000230000002500000024000000260000002800000027000000290000002b0000002a0000002c0000002e0000002d0000002f0000003100000030000000320000003400000033000000350000003700000036000000380000003a000000390000003b0000003d0000003c0000003e000000400000003f0000004100000043000000420000004400000046000000450000004700000049000000480000004a0000004c0000004b0000004d0000004f0000004e000000500000005200000051000000530000005500000054000000560000005800000057000000590000005b0000005a0000005c0000005e0000005d0000005f0000006100000060000000620000006400000063000000650000006700000066000000680000006a000000690000006b0000006d0000006c0000006e000000700000006f000000
lambdas:
serializedContents: []
restBends:
serializedContents:
- 0
- 0
- 0
- 0
- 0
- 0.000064730644
- 0.000010371208
- 0.000036031008
- 0.20253679
- 0
- 0
- 0
......@@ -1271,7 +1222,6 @@ MonoBehaviour:
- {x: 0, y: 0}
- {x: 0, y: 0}
- {x: 0, y: 0}
- {x: 0, y: 0}
skinConstraintsData:
batches: []
tetherConstraintsData:
......@@ -1309,8 +1259,8 @@ MonoBehaviour:
outTangent: {x: 0.4335778, y: 0, z: 0}
- tangentMode: 0
inTangent: {x: -0.22383595, y: 0, z: 0}
position: {x: 1, y: 0, z: 0}
outTangent: {x: 0.25, y: -0, z: -0}
position: {x: 0.4834028, y: -0.000000092196736, z: 0}
outTangent: {x: 0.25, y: 0, z: 0}
m_Normals:
data:
- {x: 0, y: 1, z: 0}
......@@ -1362,28 +1312,28 @@ MonoBehaviour:
- 0.10251689
- 0.1095339
- 0.116700046
- 0.18383583
- 0.2605888
- 0.34579644
- 0.43829617
- 0.5369255
- 0.64052194
- 0.7479229
- 0.8579659
- 0.9694884
- 1.0813278
- 1.1923218
- 1.3013076
- 1.4071229
- 1.508605
- 1.6045915
- 1.6939198
- 1.7754273
- 1.8479517
- 1.9103302
- 1.9614005
- 2
m_TotalSplineLenght: 2
- 0.18043312
- 0.24742424
- 0.31718025
- 0.389208
- 0.46301433
- 0.5381062
- 0.6139903
- 0.6901736
- 0.766163
- 0.84146523
- 0.9155873
- 0.9880359
- 1.058318
- 1.1259404
- 1.19041
- 1.2512337
- 1.3079183
- 1.3599707
- 1.4068977
- 1.4482061
- 1.4834028
m_TotalSplineLenght: 1.4834028
OnPathChanged:
m_PersistentCalls:
m_Calls: []
......@@ -1398,127 +1348,122 @@ MonoBehaviour:
m_Calls: []
thickness: 0.05
resolution: 0.4
m_InterParticleDistance: 0.11764706
totalParticles: 118
m_RestLength: 13.764717
m_InterParticleDistance: 0.123616904
totalParticles: 113
m_RestLength: 13.845099
restLengths:
- 0.11670005
- 0.11669767
- 0.11849612
- 0.11731398
- 0.117768645
- 0.11787382
- 0.1178714
- 0.11784513
- 0.11781409
- 0.117773324
- 0.11769721
- 0.117714405
- 0.11811137
- 0.11810517
- 0.11729765
- 0.11854333
- 0.11637664
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.11764706
- 0.12411708
- 0.1241523
- 0.124346495
- 0.124366164
- 0.12430054
- 0.12433162
- 0.12412758
- 0.12448176
- 0.12437367
- 0.12389794
- 0.124207586
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0.123616904
- 0
pooledParticles: 100
--- !u!114 &1023878380947534591
......@@ -1547,7 +1492,7 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: 775ad4994fda946d1a5936c7e2dfc785, type: 3}
m_Name: upper
m_EditorClassIdentifier:
particleIndices: 11000000
particleIndices: 0c000000
m_Blueprint: {fileID: 11400000}
--- !u!114 &2474621813314795683
MonoBehaviour:
......
......@@ -9,7 +9,7 @@ Material:
m_PrefabAsset: {fileID: 0}
m_Name: GreenRope
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords: _EMISSION _NORMALMAP
m_ShaderKeywords: _EMISSION
m_LightmapFlags: 1
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
......
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 6
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: White
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords:
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: -1
stringTagMap: {}
disabledShaderPasses: []
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_Floats:
- _BumpScale: 1
- _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
- _UVSec: 0
- _ZWrite: 1
m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
fileFormatVersion: 2
guid: cc22f869ea759ca4bb8436cfe1119a21
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 0
userData:
assetBundleName:
assetBundleVariant:
......@@ -1947,7 +1947,7 @@ Transform:
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 5251184818566356597}
m_LocalRotation: {x: -0, y: -0, z: 0.7071068, w: 0.7071068}
m_LocalPosition: {x: -1.128, y: 2.68, z: -0.3649999}
m_LocalPosition: {x: -1.128, y: 2.7, z: -0.3649999}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children: []
m_Father: {fileID: 3728341686900101326}
......@@ -1979,7 +1979,7 @@ MeshRenderer:
m_RenderingLayerMask: 4294967295
m_RendererPriority: 0
m_Materials:
- {fileID: 2100000, guid: d402dacd6333443e5926c03c59b7b0ad, type: 2}
- {fileID: 2100000, guid: cc22f869ea759ca4bb8436cfe1119a21, type: 2}
m_StaticBatchInfo:
firstSubMesh: 0
subMeshCount: 0
......@@ -4575,9 +4575,7 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: 622119790b3ecdf479dd087fef5e6923, type: 3}
m_Name:
m_EditorClassIdentifier:
m_ropeTrans: {fileID: 3437413262938135048}
m_mousePosTrans: {fileID: 6314585457469301336}
m_ropeObj: {fileID: 5251184818566356597}
m_speed: 1
--- !u!1 &6731252451585019538
GameObject:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment