Skip to content
切换导航条
切换导航条
当前项目
正在载入...
登录
ZAnti-Addiction
/
ZAnti-Addiction-Unity
转到一个项目
切换导航栏
切换导航栏固定状态
项目
群组
代码片段
帮助
项目
活动
版本库
流水线
图表
问题
0
合并请求
0
维基
网络
创建新的问题
作业
提交
问题看板
文件
提交
网络
比较
分支
标签
Commit 8f613225
由
王帅
编写于
2023-02-24 14:18:54 +0800
浏览文件
选项
浏览文件
标签
下载
电子邮件补丁
差异文件
支付金额改为string类型
1 个父辈
769fed46
显示空白字符变更
内嵌
并排
正在显示
34 个修改的文件
包含
73 行增加
和
75 行删除
AASDK-Unity/Assets/AASDKDemo/Scenes/AASDKDemoScene.unity
AASDK-Unity/Assets/AASDKDemo/Scripts/AASDKDemoScript.cs
AASDK-Unity/Assets/AntiAddictionSDK/API/AntiAddictionStytemSDK.cs
AASDK-Unity/Assets/AntiAddictionSDK/Common/IAntiAddictionClient.cs
AASDK-Unity/Assets/AntiAddictionSDK/Platforms/iOS/Bridge/AABridge.h
AASDK-Unity/Assets/AntiAddictionSDK/Platforms/iOS/Bridge/AABridge.m
AASDK-Unity/Assets/AntiAddictionSDK/Platforms/iOS/Bridge/AAInterface.m
AASDK-Unity/Assets/AntiAddictionSDK/Platforms/iOS/Externs.cs
AASDK-Unity/Assets/AntiAddictionSDK/Platforms/iOS/ManagerClient.cs
AASDK-Unity/Library/ArtifactDB
AASDK-Unity/Library/ArtifactDB-lock
AASDK-Unity/Library/CurrentLayout-default.dwlt
AASDK-Unity/Library/EditorUserBuildSettings.asset
AASDK-Unity/Library/LastBuild.buildreport
AASDK-Unity/Library/PlayerDataCache/iOS/Data/Managed/Assembly-CSharp.dll
AASDK-Unity/Library/PlayerDataCache/iOS/Data/Managed/Assembly-CSharp.pdb
AASDK-Unity/Library/PlayerDataCache/iOS/Data/Managed/Unity.TextMeshPro.dll
AASDK-Unity/Library/PlayerDataCache/iOS/Data/Managed/Unity.Timeline.dll
AASDK-Unity/Library/PlayerDataCache/iOS/Data/Managed/UnityEngine.UI.dll
AASDK-Unity/Library/PlayerDataCache/iOS/Data/globalgamemanagers
AASDK-Unity/Library/PlayerDataCache/iOS/Data/level0
AASDK-Unity/Library/PlayerDataCache/iOS/ScriptsOnlyCache.yaml
AASDK-Unity/Library/ScriptAssemblies/Assembly-CSharp.dll
AASDK-Unity/Library/ScriptAssemblies/Assembly-CSharp.pdb
AASDK-Unity/Library/SourceAssetDB
AASDK-Unity/Library/SourceAssetDB-lock
AASDK-Unity/Library/shadercompiler-UnityShaderCompiler0.log
AASDK-Unity/Library/shadercompiler-UnityShaderCompiler1.log
AASDK-Unity/Library/shadercompiler-UnityShaderCompiler2.log
AASDK-Unity/Library/shadercompiler-UnityShaderCompiler3.log
AASDK-Unity/Library/shadercompiler-UnityShaderCompiler4.log
AASDK-Unity/Library/shadercompiler-UnityShaderCompiler5.log
AASDK-Unity/Library/shadercompiler-UnityShaderCompiler6.log
AASDK-Unity/Library/shadercompiler-UnityShaderCompiler7.log
AASDK-Unity/Assets/AASDKDemo/Scenes/AASDKDemoScene.unity
查看文件 @
8f61322
...
@@ -671,13 +671,13 @@ MonoBehaviour:
...
@@ -671,13 +671,13 @@ MonoBehaviour:
m_TargetGraphic
:
{
fileID
:
165585586
}
m_TargetGraphic
:
{
fileID
:
165585586
}
m_TextComponent
:
{
fileID
:
1114040582
}
m_TextComponent
:
{
fileID
:
1114040582
}
m_Placeholder
:
{
fileID
:
1577749885
}
m_Placeholder
:
{
fileID
:
1577749885
}
m_ContentType
:
2
m_ContentType
:
0
m_InputType
:
0
m_InputType
:
0
m_AsteriskChar
:
42
m_AsteriskChar
:
42
m_KeyboardType
:
4
m_KeyboardType
:
0
m_LineType
:
0
m_LineType
:
0
m_HideMobileInput
:
0
m_HideMobileInput
:
0
m_CharacterValidation
:
1
m_CharacterValidation
:
0
m_CharacterLimit
:
100
m_CharacterLimit
:
100
m_OnEndEdit
:
m_OnEndEdit
:
m_PersistentCalls
:
m_PersistentCalls
:
...
...
AASDK-Unity/Assets/AASDKDemo/Scripts/AASDKDemoScript.cs
查看文件 @
8f61322
...
@@ -66,13 +66,12 @@ public class AASDKDemoScript: MonoBehaviour
...
@@ -66,13 +66,12 @@ public class AASDKDemoScript: MonoBehaviour
public
void
checkPayWithAmount
()
public
void
checkPayWithAmount
()
{
{
int
amountValue
=
int
.
Parse
(
inputField
.
text
);
if
(
antiAddictionSDK
!=
null
)
if
(
antiAddictionSDK
!=
null
)
{
{
antiAddictionSDK
.
checkPayWithAmount
(
amountValue
);
antiAddictionSDK
.
checkPayWithAmount
(
inputField
.
text
);
String
infoString
=
"--- checkPayWithAmount:"
+
amountValue
;
String
infoString
=
"--- checkPayWithAmount:"
+
inputField
.
text
;
print
(
infoString
);
print
(
infoString
);
statusText
.
text
=
infoString
;
statusText
.
text
=
infoString
;
}
}
...
@@ -80,13 +79,12 @@ public class AASDKDemoScript: MonoBehaviour
...
@@ -80,13 +79,12 @@ public class AASDKDemoScript: MonoBehaviour
public
void
recordPayWithAmount
()
public
void
recordPayWithAmount
()
{
{
int
amountValue
=
int
.
Parse
(
inputField
.
text
);
if
(
antiAddictionSDK
!=
null
)
if
(
antiAddictionSDK
!=
null
)
{
{
antiAddictionSDK
.
recordPayWithAmount
(
amountValue
);
antiAddictionSDK
.
recordPayWithAmount
(
inputField
.
text
);
String
infoString
=
"--- recordPayWithAmount:"
+
amountValue
;
String
infoString
=
"--- recordPayWithAmount:"
+
inputField
.
text
;
print
(
infoString
);
print
(
infoString
);
statusText
.
text
=
infoString
;
statusText
.
text
=
infoString
;
}
}
...
...
AASDK-Unity/Assets/AntiAddictionSDK/API/AntiAddictionStytemSDK.cs
查看文件 @
8f61322
...
@@ -66,12 +66,12 @@ namespace AntiAddictionSDK.Api
...
@@ -66,12 +66,12 @@ namespace AntiAddictionSDK.Api
return
client
.
LeftTimeOfCurrentUser
();
return
client
.
LeftTimeOfCurrentUser
();
}
}
public
void
checkPayWithAmount
(
int
amount
)
public
void
checkPayWithAmount
(
String
amount
)
{
{
client
.
checkPayWithAmount
(
amount
);
client
.
checkPayWithAmount
(
amount
);
}
}
public
void
recordPayWithAmount
(
int
amount
)
public
void
recordPayWithAmount
(
String
amount
)
{
{
client
.
recordPayWithAmount
(
amount
);
client
.
recordPayWithAmount
(
amount
);
}
}
...
...
AASDK-Unity/Assets/AntiAddictionSDK/Common/IAntiAddictionClient.cs
查看文件 @
8f61322
...
@@ -25,9 +25,9 @@ namespace AntiAddictionSDK.Common
...
@@ -25,9 +25,9 @@ namespace AntiAddictionSDK.Common
int
LeftTimeOfCurrentUser
();
int
LeftTimeOfCurrentUser
();
void
checkPayWithAmount
(
int
amount
);
void
checkPayWithAmount
(
String
amount
);
void
recordPayWithAmount
(
int
amount
);
void
recordPayWithAmount
(
String
amount
);
}
}
}
}
\ No newline at end of file
\ No newline at end of file
AASDK-Unity/Assets/AntiAddictionSDK/Platforms/iOS/Bridge/AABridge.h
查看文件 @
8f61322
...
@@ -29,10 +29,10 @@
...
@@ -29,10 +29,10 @@
/// 游戏付费前调用,检查是否可以付费
/// 游戏付费前调用,检查是否可以付费
/// amount 支付金额
/// amount 支付金额
-
(
void
)
checkPayWithAmount
:(
int
)
amount
;
-
(
void
)
checkPayWithAmount
:(
const
char
*
)
amount
;
/// 游戏付费成功之后调用,告知服务端
/// 游戏付费成功之后调用,告知服务端
/// amount 支付金额
/// amount 支付金额
-
(
void
)
recordPayWithAmount
:(
int
)
amount
;
-
(
void
)
recordPayWithAmount
:(
const
char
*
)
amount
;
@end
@end
AASDK-Unity/Assets/AntiAddictionSDK/Platforms/iOS/Bridge/AABridge.m
查看文件 @
8f61322
...
@@ -35,12 +35,14 @@
...
@@ -35,12 +35,14 @@
return
[
self
.
manager
checkLeftTimeOfCurrentUser
];
return
[
self
.
manager
checkLeftTimeOfCurrentUser
];
}
}
-
(
void
)
checkPayWithAmount
:
(
int
)
amount
{
-
(
void
)
checkPayWithAmount
:
(
const
char
*
)
amount
{
[
self
.
manager
checkPayWithAmount
:
amount
];
NSString
*
amountString
=
[
NSString
stringWithUTF8String
:
amount
];
[
self
.
manager
checkPayWithAmount
:
amountString
];
}
}
-
(
void
)
recordPayWithAmount
:
(
int
)
amount
{
-
(
void
)
recordPayWithAmount
:
(
const
char
*
)
amount
{
[
self
.
manager
recordPayWithAmount
:
amount
];
NSString
*
amountString
=
[
NSString
stringWithUTF8String
:
amount
];
[
self
.
manager
recordPayWithAmount
:
amountString
];
}
}
#pragma mark - ZAAManagerDelegate
#pragma mark - ZAAManagerDelegate
...
...
AASDK-Unity/Assets/AntiAddictionSDK/Platforms/iOS/Bridge/AAInterface.m
查看文件 @
8f61322
...
@@ -38,12 +38,12 @@ void checkLeftTimeOfCurrentUser(AATypeRef manager) {
...
@@ -38,12 +38,12 @@ void checkLeftTimeOfCurrentUser(AATypeRef manager) {
[
internalManager
checkLeftTimeOfCurrentUser
];
[
internalManager
checkLeftTimeOfCurrentUser
];
}
}
void
checkPayWithAmount
(
AATypeRef
manager
,
int
amount
)
{
void
checkPayWithAmount
(
AATypeRef
manager
,
const
char
*
amount
)
{
AABridge
*
internalManager
=
(
__bridge
AABridge
*
)
manager
;
AABridge
*
internalManager
=
(
__bridge
AABridge
*
)
manager
;
[
internalManager
checkPayWithAmount
:
amount
];
[
internalManager
checkPayWithAmount
:
amount
];
}
}
void
recordPayWithAmount
(
AATypeRef
manager
,
int
amount
)
{
void
recordPayWithAmount
(
AATypeRef
manager
,
const
char
*
amount
)
{
AABridge
*
internalManager
=
(
__bridge
AABridge
*
)
manager
;
AABridge
*
internalManager
=
(
__bridge
AABridge
*
)
manager
;
[
internalManager
recordPayWithAmount
:
amount
];
[
internalManager
recordPayWithAmount
:
amount
];
}
}
...
...
AASDK-Unity/Assets/AntiAddictionSDK/Platforms/iOS/Externs.cs
查看文件 @
8f61322
...
@@ -32,10 +32,10 @@ namespace AntiAddictionSDK.iOS
...
@@ -32,10 +32,10 @@ namespace AntiAddictionSDK.iOS
internal
static
extern
int
checkLeftTimeOfCurrentUser
(
IntPtr
manager
);
internal
static
extern
int
checkLeftTimeOfCurrentUser
(
IntPtr
manager
);
[
DllImport
(
"__Internal"
)]
[
DllImport
(
"__Internal"
)]
internal
static
extern
void
checkPayWithAmount
(
IntPtr
manager
,
int
amount
);
internal
static
extern
void
checkPayWithAmount
(
IntPtr
manager
,
String
amount
);
[
DllImport
(
"__Internal"
)]
[
DllImport
(
"__Internal"
)]
internal
static
extern
void
recordPayWithAmount
(
IntPtr
manager
,
int
amount
);
internal
static
extern
void
recordPayWithAmount
(
IntPtr
manager
,
String
amount
);
}
}
}
}
#
endif
#
endif
\ No newline at end of file
\ No newline at end of file
AASDK-Unity/Assets/AntiAddictionSDK/Platforms/iOS/ManagerClient.cs
查看文件 @
8f61322
...
@@ -59,12 +59,12 @@ namespace AntiAddictionSDK.iOS
...
@@ -59,12 +59,12 @@ namespace AntiAddictionSDK.iOS
return
Externs
.
checkLeftTimeOfCurrentUser
(
managerPtr
);
return
Externs
.
checkLeftTimeOfCurrentUser
(
managerPtr
);
}
}
public
void
checkPayWithAmount
(
int
amount
)
public
void
checkPayWithAmount
(
String
amount
)
{
{
Externs
.
checkPayWithAmount
(
managerPtr
,
amount
);
Externs
.
checkPayWithAmount
(
managerPtr
,
amount
);
}
}
public
void
recordPayWithAmount
(
int
amount
)
public
void
recordPayWithAmount
(
String
amount
)
{
{
Externs
.
recordPayWithAmount
(
managerPtr
,
amount
);
Externs
.
recordPayWithAmount
(
managerPtr
,
amount
);
}
}
...
...
AASDK-Unity/Library/ArtifactDB
查看文件 @
8f61322
此文件太大,无法显示。
AASDK-Unity/Library/ArtifactDB-lock
查看文件 @
8f61322
此文件类型无法预览
AASDK-Unity/Library/CurrentLayout-default.dwlt
查看文件 @
8f61322
...
@@ -14,14 +14,14 @@ MonoBehaviour:
...
@@ -14,14 +14,14 @@ MonoBehaviour:
m_EditorClassIdentifier
:
m_EditorClassIdentifier
:
m_PixelRect
:
m_PixelRect
:
serializedVersion
:
2
serializedVersion
:
2
x
:
58
x
:
-1
y
:
66
y
:
66
width
:
1512
width
:
1512
height
:
836
height
:
836
m_ShowMode
:
4
m_ShowMode
:
4
m_Title
:
m_Title
:
m_RootView
:
{
fileID
:
2
}
m_RootView
:
{
fileID
:
2
}
m_MinSize
:
{
x
:
875
,
y
:
300
}
m_MinSize
:
{
x
:
875
,
y
:
492
}
m_MaxSize
:
{
x
:
10000
,
y
:
10000
}
m_MaxSize
:
{
x
:
10000
,
y
:
10000
}
m_Maximized
:
0
m_Maximized
:
0
---
!u!114
&2
---
!u!114
&2
...
@@ -46,7 +46,7 @@ MonoBehaviour:
...
@@ -46,7 +46,7 @@ MonoBehaviour:
y
:
0
y
:
0
width
:
1512
width
:
1512
height
:
836
height
:
836
m_MinSize
:
{
x
:
875
,
y
:
300
}
m_MinSize
:
{
x
:
875
,
y
:
492
}
m_MaxSize
:
{
x
:
10000
,
y
:
10000
}
m_MaxSize
:
{
x
:
10000
,
y
:
10000
}
---
!u!114
&3
---
!u!114
&3
MonoBehaviour
:
MonoBehaviour
:
...
@@ -93,10 +93,10 @@ MonoBehaviour:
...
@@ -93,10 +93,10 @@ MonoBehaviour:
y
:
30
y
:
30
width
:
1512
width
:
1512
height
:
786
height
:
786
m_MinSize
:
{
x
:
91
0
,
y
:
442
}
m_MinSize
:
{
x
:
91
1
,
y
:
442
}
m_MaxSize
:
{
x
:
2200
5
,
y
:
10021
}
m_MaxSize
:
{
x
:
2200
6
,
y
:
10021
}
vertical
:
0
vertical
:
0
controlID
:
10
3
controlID
:
3
3
---
!u!114
&5
---
!u!114
&5
MonoBehaviour
:
MonoBehaviour
:
m_ObjectHideFlags
:
52
m_ObjectHideFlags
:
52
...
@@ -142,7 +142,7 @@ MonoBehaviour:
...
@@ -142,7 +142,7 @@ MonoBehaviour:
m_MinSize
:
{
x
:
201
,
y
:
442
}
m_MinSize
:
{
x
:
201
,
y
:
442
}
m_MaxSize
:
{
x
:
4001
,
y
:
8042
}
m_MaxSize
:
{
x
:
4001
,
y
:
8042
}
vertical
:
1
vertical
:
1
controlID
:
40
controlID
:
34
---
!u!114
&7
---
!u!114
&7
MonoBehaviour
:
MonoBehaviour
:
m_ObjectHideFlags
:
52
m_ObjectHideFlags
:
52
...
@@ -214,8 +214,8 @@ MonoBehaviour:
...
@@ -214,8 +214,8 @@ MonoBehaviour:
y
:
0
y
:
0
width
:
337
width
:
337
height
:
786
height
:
786
m_MinSize
:
{
x
:
27
5
,
y
:
50
}
m_MinSize
:
{
x
:
27
6
,
y
:
71
}
m_MaxSize
:
{
x
:
400
0
,
y
:
4000
}
m_MaxSize
:
{
x
:
400
1
,
y
:
4021
}
m_ActualView
:
{
fileID
:
13
}
m_ActualView
:
{
fileID
:
13
}
m_Panes
:
m_Panes
:
-
{
fileID
:
13
}
-
{
fileID
:
13
}
...
@@ -289,12 +289,12 @@ MonoBehaviour:
...
@@ -289,12 +289,12 @@ MonoBehaviour:
m_MaxSize
:
{
x
:
4000
,
y
:
4000
}
m_MaxSize
:
{
x
:
4000
,
y
:
4000
}
m_TitleContent
:
m_TitleContent
:
m_Text
:
"
\u5C42\u7EA7
"
m_Text
:
"
\u5C42\u7EA7
"
m_Image
:
{
fileID
:
-373474523527515585
7
,
guid
:
0000000000000000d000000000000000
,
m_Image
:
{
fileID
:
796613314552201524
7
,
guid
:
0000000000000000d000000000000000
,
type
:
0
}
type
:
0
}
m_Tooltip
:
m_Tooltip
:
m_Pos
:
m_Pos
:
serializedVersion
:
2
serializedVersion
:
2
x
:
703
x
:
644
y
:
96
y
:
96
width
:
230
width
:
230
height
:
765
height
:
765
...
@@ -302,9 +302,9 @@ MonoBehaviour:
...
@@ -302,9 +302,9 @@ MonoBehaviour:
m_SceneHierarchy
:
m_SceneHierarchy
:
m_TreeViewState
:
m_TreeViewState
:
scrollPos
:
{
x
:
0
,
y
:
0
}
scrollPos
:
{
x
:
0
,
y
:
0
}
m_SelectedIDs
:
d22d0000
m_SelectedIDs
:
m_LastClickedID
:
0
m_LastClickedID
:
0
m_ExpandedIDs
:
9eefffffbaefffff50f0ffff32f2ffff3ef2ffffaaf4ffff66fbffff20380000c03b0000503c0000d63e
0000
m_ExpandedIDs
:
04f8ffff20f8ffff22f8ffffb8f9ffffd4f9ffff66faffff66fbffff1e3b
0000
m_RenameOverlay
:
m_RenameOverlay
:
m_UserAcceptedRename
:
0
m_UserAcceptedRename
:
0
m_Name
:
m_Name
:
...
@@ -344,12 +344,12 @@ MonoBehaviour:
...
@@ -344,12 +344,12 @@ MonoBehaviour:
m_MaxSize
:
{
x
:
4000
,
y
:
4000
}
m_MaxSize
:
{
x
:
4000
,
y
:
4000
}
m_TitleContent
:
m_TitleContent
:
m_Text
:
"
\u68C0\u67E5\u5668
"
m_Text
:
"
\u68C0\u67E5\u5668
"
m_Image
:
{
fileID
:
-
440750813802333266
,
guid
:
0000000000000000d000000000000000
,
m_Image
:
{
fileID
:
-
2667387946076563598
,
guid
:
0000000000000000d000000000000000
,
type
:
0
}
type
:
0
}
m_Tooltip
:
m_Tooltip
:
m_Pos
:
m_Pos
:
serializedVersion
:
2
serializedVersion
:
2
x
:
1
233
x
:
1
174
y
:
96
y
:
96
width
:
336
width
:
336
height
:
765
height
:
765
...
@@ -365,7 +365,7 @@ MonoBehaviour:
...
@@ -365,7 +365,7 @@ MonoBehaviour:
m_PrefName
:
Preview_InspectorPreview
m_PrefName
:
Preview_InspectorPreview
m_PreviewWindow
:
{
fileID
:
0
}
m_PreviewWindow
:
{
fileID
:
0
}
m_LastInspectedObjectInstanceID
:
-1
m_LastInspectedObjectInstanceID
:
-1
m_LastVerticalScrollValue
:
58
m_LastVerticalScrollValue
:
0
---
!u!114
&14
---
!u!114
&14
MonoBehaviour
:
MonoBehaviour
:
m_ObjectHideFlags
:
52
m_ObjectHideFlags
:
52
...
@@ -382,12 +382,12 @@ MonoBehaviour:
...
@@ -382,12 +382,12 @@ MonoBehaviour:
m_MaxSize
:
{
x
:
10000
,
y
:
10000
}
m_MaxSize
:
{
x
:
10000
,
y
:
10000
}
m_TitleContent
:
m_TitleContent
:
m_Text
:
"
\u9879\u76EE
"
m_Text
:
"
\u9879\u76EE
"
m_Image
:
{
fileID
:
-5
179483145760003458
,
guid
:
0000000000000000d000000000000000
,
m_Image
:
{
fileID
:
-5
467254957812901981
,
guid
:
0000000000000000d000000000000000
,
type
:
0
}
type
:
0
}
m_Tooltip
:
m_Tooltip
:
m_Pos
:
m_Pos
:
serializedVersion
:
2
serializedVersion
:
2
x
:
935
x
:
876
y
:
96
y
:
96
width
:
296
width
:
296
height
:
765
height
:
765
...
@@ -416,9 +416,9 @@ MonoBehaviour:
...
@@ -416,9 +416,9 @@ MonoBehaviour:
m_IsLocked
:
0
m_IsLocked
:
0
m_FolderTreeState
:
m_FolderTreeState
:
scrollPos
:
{
x
:
0
,
y
:
0
}
scrollPos
:
{
x
:
0
,
y
:
0
}
m_SelectedIDs
:
a4
380000
m_SelectedIDs
:
b6
380000
m_LastClickedID
:
145
00
m_LastClickedID
:
145
18
m_ExpandedIDs
:
00000000
6c3800006e38000070380000723800007438000076380000783800007a3800007c3800007e
38000000ca9a3b
m_ExpandedIDs
:
00000000
7e38000080380000823800008438000086380000883800008a3800008c3800008e38000090
38000000ca9a3b
m_RenameOverlay
:
m_RenameOverlay
:
m_UserAcceptedRename
:
0
m_UserAcceptedRename
:
0
m_Name
:
m_Name
:
...
@@ -434,7 +434,7 @@ MonoBehaviour:
...
@@ -434,7 +434,7 @@ MonoBehaviour:
m_IsRenaming
:
0
m_IsRenaming
:
0
m_OriginalEventType
:
11
m_OriginalEventType
:
11
m_IsRenamingFilename
:
1
m_IsRenamingFilename
:
1
m_ClientGUIView
:
{
fileID
:
0
}
m_ClientGUIView
:
{
fileID
:
8
}
m_SearchString
:
m_SearchString
:
m_CreateAssetUtility
:
m_CreateAssetUtility
:
m_EndAction
:
{
fileID
:
0
}
m_EndAction
:
{
fileID
:
0
}
...
@@ -446,7 +446,7 @@ MonoBehaviour:
...
@@ -446,7 +446,7 @@ MonoBehaviour:
scrollPos
:
{
x
:
0
,
y
:
0
}
scrollPos
:
{
x
:
0
,
y
:
0
}
m_SelectedIDs
:
m_SelectedIDs
:
m_LastClickedID
:
0
m_LastClickedID
:
0
m_ExpandedIDs
:
00000000
6c3800006e38000070380000723800007438000076380000783800007a3800007c3800007e
380000
m_ExpandedIDs
:
00000000
7e38000080380000823800008438000086380000883800008a3800008c3800008e38000090
380000
m_RenameOverlay
:
m_RenameOverlay
:
m_UserAcceptedRename
:
0
m_UserAcceptedRename
:
0
m_Name
:
m_Name
:
...
@@ -477,18 +477,18 @@ MonoBehaviour:
...
@@ -477,18 +477,18 @@ MonoBehaviour:
m_ExpandedInstanceIDs
:
m_ExpandedInstanceIDs
:
m_RenameOverlay
:
m_RenameOverlay
:
m_UserAcceptedRename
:
0
m_UserAcceptedRename
:
0
m_Name
:
AASDKDemoScene
m_Name
:
m_OriginalName
:
AASDKDemoScene
m_OriginalName
:
m_EditFieldRect
:
m_EditFieldRect
:
serializedVersion
:
2
serializedVersion
:
2
x
:
0
x
:
0
y
:
0
y
:
0
width
:
0
width
:
0
height
:
0
height
:
0
m_UserData
:
14522
m_UserData
:
0
m_IsWaitingForDelay
:
0
m_IsWaitingForDelay
:
0
m_IsRenaming
:
0
m_IsRenaming
:
0
m_OriginalEventType
:
0
m_OriginalEventType
:
11
m_IsRenamingFilename
:
1
m_IsRenamingFilename
:
1
m_ClientGUIView
:
{
fileID
:
8
}
m_ClientGUIView
:
{
fileID
:
8
}
m_CreateAssetUtility
:
m_CreateAssetUtility
:
...
@@ -518,12 +518,12 @@ MonoBehaviour:
...
@@ -518,12 +518,12 @@ MonoBehaviour:
m_MaxSize
:
{
x
:
4000
,
y
:
4000
}
m_MaxSize
:
{
x
:
4000
,
y
:
4000
}
m_TitleContent
:
m_TitleContent
:
m_Text
:
"
\u6E38\u620F
"
m_Text
:
"
\u6E38\u620F
"
m_Image
:
{
fileID
:
4621777727084837110
,
guid
:
0000000000000000d000000000000000
,
m_Image
:
{
fileID
:
-6423792434712278376
,
guid
:
0000000000000000d000000000000000
,
type
:
0
}
type
:
0
}
m_Tooltip
:
m_Tooltip
:
m_Pos
:
m_Pos
:
serializedVersion
:
2
serializedVersion
:
2
x
:
58
x
:
-1
y
:
499
y
:
499
width
:
644
width
:
644
height
:
362
height
:
362
...
@@ -610,12 +610,12 @@ MonoBehaviour:
...
@@ -610,12 +610,12 @@ MonoBehaviour:
m_MaxSize
:
{
x
:
4000
,
y
:
4000
}
m_MaxSize
:
{
x
:
4000
,
y
:
4000
}
m_TitleContent
:
m_TitleContent
:
m_Text
:
"
\u573A\u666F
"
m_Text
:
"
\u573A\u666F
"
m_Image
:
{
fileID
:
8634526014445323508
,
guid
:
0000000000000000d000000000000000
,
m_Image
:
{
fileID
:
2593428753322112591
,
guid
:
0000000000000000d000000000000000
,
type
:
0
}
type
:
0
}
m_Tooltip
:
m_Tooltip
:
m_Pos
:
m_Pos
:
serializedVersion
:
2
serializedVersion
:
2
x
:
58
x
:
-1
y
:
96
y
:
96
width
:
644
width
:
644
height
:
382
height
:
382
...
...
AASDK-Unity/Library/EditorUserBuildSettings.asset
查看文件 @
8f61322
此文件类型无法预览
AASDK-Unity/Library/LastBuild.buildreport
查看文件 @
8f61322
此文件类型无法预览
AASDK-Unity/Library/PlayerDataCache/iOS/Data/Managed/Assembly-CSharp.dll
查看文件 @
8f61322
此文件类型无法预览
AASDK-Unity/Library/PlayerDataCache/iOS/Data/Managed/Assembly-CSharp.pdb
查看文件 @
8f61322
此文件类型无法预览
AASDK-Unity/Library/PlayerDataCache/iOS/Data/Managed/Unity.TextMeshPro.dll
查看文件 @
8f61322
此文件类型无法预览
AASDK-Unity/Library/PlayerDataCache/iOS/Data/Managed/Unity.Timeline.dll
查看文件 @
8f61322
此文件类型无法预览
AASDK-Unity/Library/PlayerDataCache/iOS/Data/Managed/UnityEngine.UI.dll
查看文件 @
8f61322
此文件类型无法预览
AASDK-Unity/Library/PlayerDataCache/iOS/Data/globalgamemanagers
查看文件 @
8f61322
此文件类型无法预览
AASDK-Unity/Library/PlayerDataCache/iOS/Data/level0
查看文件 @
8f61322
此文件类型无法预览
AASDK-Unity/Library/PlayerDataCache/iOS/ScriptsOnlyCache.yaml
查看文件 @
8f61322
...
@@ -503,4 +503,4 @@ ScriptsOnlyBuild:
...
@@ -503,4 +503,4 @@ ScriptsOnlyBuild:
platform
:
9
platform
:
9
scenePathNames
:
scenePathNames
:
-
Assets/AASDKDemo/Scenes/AASDKDemoScene.unity
-
Assets/AASDKDemo/Scenes/AASDKDemoScene.unity
playerPath
:
/Users/ws/Desktop/ZAAUnityDemo/
aaaaaa
playerPath
:
/Users/ws/Desktop/ZAAUnityDemo/
bbbbbbb
AASDK-Unity/Library/ScriptAssemblies/Assembly-CSharp.dll
查看文件 @
8f61322
此文件类型无法预览
AASDK-Unity/Library/ScriptAssemblies/Assembly-CSharp.pdb
查看文件 @
8f61322
此文件类型无法预览
AASDK-Unity/Library/SourceAssetDB
查看文件 @
8f61322
此文件类型无法预览
AASDK-Unity/Library/SourceAssetDB-lock
查看文件 @
8f61322
此文件类型无法预览
AASDK-Unity/Library/shadercompiler-UnityShaderCompiler0.log
查看文件 @
8f61322
Base path: '/Applications/Unity/Hub/Editor/2019.4.39f1c1/Unity.app/Contents', plugins path '/Applications/Unity/Hub/Editor/2019.4.39f1c1/Unity.app/Contents/PlaybackEngines'
Base path: '/Applications/Unity/Hub/Editor/2019.4.39f1c1/Unity.app/Contents', plugins path '/Applications/Unity/Hub/Editor/2019.4.39f1c1/Unity.app/Contents/PlaybackEngines'
Cmd: initializeCompiler
Cmd: initializeCompiler
Cmd: compileSnippet
api=14 type=1 insize=1402 outsize=2318 kw= pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER2 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
AASDK-Unity/Library/shadercompiler-UnityShaderCompiler1.log
查看文件 @
8f61322
Base path: '/Applications/Unity/Hub/Editor/2019.4.39f1c1/Unity.app/Contents', plugins path '/Applications/Unity/Hub/Editor/2019.4.39f1c1/Unity.app/Contents/PlaybackEngines'
Base path: '/Applications/Unity/Hub/Editor/2019.4.39f1c1/Unity.app/Contents', plugins path '/Applications/Unity/Hub/Editor/2019.4.39f1c1/Unity.app/Contents/PlaybackEngines'
Cmd: initializeCompiler
Cmd: initializeCompiler
Cmd: compileSnippet
Cmd: compileSnippet
api=14 type=0 insize=1306 outsize=2564 kw= pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
api=14 type=0 insize=1402 outsize=1585 kw= pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
Cmd: compileSnippet
api=14 type=0 insize=1901 outsize=2608 kw= pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
Cmd: shutdown
Cmd: shutdown
AASDK-Unity/Library/shadercompiler-UnityShaderCompiler2.log
查看文件 @
8f61322
Base path: '/Applications/Unity/Hub/Editor/2019.4.39f1c1/Unity.app/Contents', plugins path '/Applications/Unity/Hub/Editor/2019.4.39f1c1/Unity.app/Contents/PlaybackEngines'
Base path: '/Applications/Unity/Hub/Editor/2019.4.39f1c1/Unity.app/Contents', plugins path '/Applications/Unity/Hub/Editor/2019.4.39f1c1/Unity.app/Contents/PlaybackEngines'
Cmd: initializeCompiler
Cmd: initializeCompiler
Cmd: compileSnippet
Cmd: compileSnippet
api=14 type=1 insize=1306 outsize=1187 kw= pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER2 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
api=14 type=1 insize=1402 outsize=2318 kw= pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF3 SHADER_API_MOBILE UNITY_HARDWARE_TIER1 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
Cmd: compileSnippet
api=14 type=0 insize=2525 outsize=1546 kw= pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
Cmd: shutdown
Cmd: shutdown
Quitting shader compiler process
AASDK-Unity/Library/shadercompiler-UnityShaderCompiler3.log
查看文件 @
8f61322
Base path: '/Applications/Unity/Hub/Editor/2019.4.39f1c1/Unity.app/Contents', plugins path '/Applications/Unity/Hub/Editor/2019.4.39f1c1/Unity.app/Contents/PlaybackEngines'
Base path: '/Applications/Unity/Hub/Editor/2019.4.39f1c1/Unity.app/Contents', plugins path '/Applications/Unity/Hub/Editor/2019.4.39f1c1/Unity.app/Contents/PlaybackEngines'
Cmd: initializeCompiler
Cmd: initializeCompiler
Cmd: compileSnippet
Cmd: compileSnippet
api=14 type=1 insize=1
306 outsize=1187
kw= pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
api=14 type=1 insize=1
402 outsize=2318
kw= pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
Cmd: shutdown
Cmd: shutdown
Quitting shader compiler process
AASDK-Unity/Library/shadercompiler-UnityShaderCompiler4.log
查看文件 @
8f61322
Base path: '/Applications/Unity/Hub/Editor/2019.4.39f1c1/Unity.app/Contents', plugins path '/Applications/Unity/Hub/Editor/2019.4.39f1c1/Unity.app/Contents/PlaybackEngines'
Base path: '/Applications/Unity/Hub/Editor/2019.4.39f1c1/Unity.app/Contents', plugins path '/Applications/Unity/Hub/Editor/2019.4.39f1c1/Unity.app/Contents/PlaybackEngines'
Cmd: initializeCompiler
Cmd: initializeCompiler
Cmd: compileSnippet
Cmd: compileSnippet
api=14 type=1 insize=1901 outsize=842 kw= pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
api=14 type=0 insize=1224 outsize=1622 kw=UNITY_HDR_ON pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER2 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
Cmd: compileSnippet
api=14 type=1 insize=1224 outsize=960 kw=UNITY_HDR_ON pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER2 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
Cmd: shutdown
Cmd: shutdown
Quitting shader compiler process
Quitting shader compiler process
AASDK-Unity/Library/shadercompiler-UnityShaderCompiler5.log
查看文件 @
8f61322
Base path: '/Applications/Unity/Hub/Editor/2019.4.39f1c1/Unity.app/Contents', plugins path '/Applications/Unity/Hub/Editor/2019.4.39f1c1/Unity.app/Contents/PlaybackEngines'
Base path: '/Applications/Unity/Hub/Editor/2019.4.39f1c1/Unity.app/Contents', plugins path '/Applications/Unity/Hub/Editor/2019.4.39f1c1/Unity.app/Contents/PlaybackEngines'
Cmd: initializeCompiler
Cmd: initializeCompiler
Cmd: compileSnippet
Cmd: compileSnippet
api=14 type=
1 insize=1901 outsize=842 kw= pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER2
UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
api=14 type=
0 insize=1224 outsize=1622 kw=UNITY_HDR_ON pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3
UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
Cmd: compileSnippet
Cmd: compileSnippet
api=14 type=1 insize=
2525 outsize=621 kw= pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER2
UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
api=14 type=1 insize=
9423 outsize=2933 kw=ADJUST_TO_LINEARSPACE pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3
UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
Cmd: shutdown
Cmd: shutdown
Quitting shader compiler process
Quitting shader compiler process
AASDK-Unity/Library/shadercompiler-UnityShaderCompiler6.log
查看文件 @
8f61322
Base path: '/Applications/Unity/Hub/Editor/2019.4.39f1c1/Unity.app/Contents', plugins path '/Applications/Unity/Hub/Editor/2019.4.39f1c1/Unity.app/Contents/PlaybackEngines'
Base path: '/Applications/Unity/Hub/Editor/2019.4.39f1c1/Unity.app/Contents', plugins path '/Applications/Unity/Hub/Editor/2019.4.39f1c1/Unity.app/Contents/PlaybackEngines'
Cmd: initializeCompiler
Cmd: initializeCompiler
Cmd: compileSnippet
Cmd: compileSnippet
api=14 type=1 insize=2525 outsize=621 kw= pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
api=14 type=1 insize=1224 outsize=960 kw=UNITY_HDR_ON pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
Cmd: compileSnippet
api=14 type=0 insize=9423 outsize=1617 kw=ADJUST_TO_LINEARSPACE pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
Cmd: compileSnippet
api=14 type=1 insize=9423 outsize=2933 kw=ADJUST_TO_LINEARSPACE pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER2 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
Cmd: shutdown
Cmd: shutdown
Quitting shader compiler process
Quitting shader compiler process
AASDK-Unity/Library/shadercompiler-UnityShaderCompiler7.log
查看文件 @
8f61322
Base path: '/Applications/Unity/Hub/Editor/2019.4.39f1c1/Unity.app/Contents', plugins path '/Applications/Unity/Hub/Editor/2019.4.39f1c1/Unity.app/Contents/PlaybackEngines'
Base path: '/Applications/Unity/Hub/Editor/2019.4.39f1c1/Unity.app/Contents', plugins path '/Applications/Unity/Hub/Editor/2019.4.39f1c1/Unity.app/Contents/PlaybackEngines'
Cmd: initializeCompiler
Cmd: initializeCompiler
Cmd: compileSnippet
Cmd: compileSnippet
api=14 type=0 insize=17587 outsize=3829 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL LIGHTPROBE_SH pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
api=14 type=0 insize=9423 outsize=1617 kw=ADJUST_TO_LINEARSPACE pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER2 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
Cmd: compileSnippet
api=14 type=1 insize=17587 outsize=3595 kw=UNITY_PASS_FORWARDBASE DIRECTIONAL SHADOWS_SCREEN pd=UNITY_NO_DXT5nm UNITY_NO_RGBM UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER2 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
Cmd: shutdown
Cmd: shutdown
Quitting shader compiler process
Quitting shader compiler process
编写
预览
支持
Markdown
格式
附加文件
你添加了
0
人
到此讨论。请谨慎行事。
Finish editing this message first!
Cancel
请
注册
或
登录
后发表评论