Commit 8f613225 王帅

支付金额改为string类型

1 个父辈 769fed46
正在显示 34 个修改的文件 包含 73 行增加75 行删除
...@@ -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:
......
...@@ -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;
} }
......
...@@ -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);
} }
......
...@@ -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
...@@ -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
...@@ -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
......
...@@ -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];
} }
......
...@@ -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
...@@ -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);
} }
......
...@@ -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: 910, y: 442} m_MinSize: {x: 911, y: 442}
m_MaxSize: {x: 22005, y: 10021} m_MaxSize: {x: 22006, y: 10021}
vertical: 0 vertical: 0
controlID: 103 controlID: 33
--- !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: 275, y: 50} m_MinSize: {x: 276, y: 71}
m_MaxSize: {x: 4000, y: 4000} m_MaxSize: {x: 4001, 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: -3734745235275155857, guid: 0000000000000000d000000000000000, m_Image: {fileID: 7966133145522015247, 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: 9eefffffbaefffff50f0ffff32f2ffff3ef2ffffaaf4ffff66fbffff20380000c03b0000503c0000d63e0000 m_ExpandedIDs: 04f8ffff20f8ffff22f8ffffb8f9ffffd4f9ffff66faffff66fbffff1e3b0000
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: 1233 x: 1174
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: -5179483145760003458, guid: 0000000000000000d000000000000000, m_Image: {fileID: -5467254957812901981, 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: a4380000 m_SelectedIDs: b6380000
m_LastClickedID: 14500 m_LastClickedID: 14518
m_ExpandedIDs: 000000006c3800006e38000070380000723800007438000076380000783800007a3800007c3800007e38000000ca9a3b m_ExpandedIDs: 000000007e38000080380000823800008438000086380000883800008a3800008c3800008e3800009038000000ca9a3b
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: 000000006c3800006e38000070380000723800007438000076380000783800007a3800007c3800007e380000 m_ExpandedIDs: 000000007e38000080380000823800008438000086380000883800008a3800008c3800008e38000090380000
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
......
...@@ -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
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
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
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
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_TIER3 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_BRDF2 SHADER_API_MOBILE UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING ok=1
Cmd: shutdown Cmd: shutdown
Quitting shader compiler process
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
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
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
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!