-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblocks.xml
More file actions
executable file
·99 lines (88 loc) · 4.4 KB
/
blocks.xml
File metadata and controls
executable file
·99 lines (88 loc) · 4.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<palette>
<block tag="initStartApp" spec="Initialize StartApp with the banner at the %0 [c:startapp]" code="StartApp.init(~);" Help="When select None, no banner will load/display" type="action" color="charcoal" returns="void">
<fields>
<dropdown order="0">
<choices>
<c text="Bottom" code=""BOTTOM""></c>
<c text="Top" code=""TOP""></c>
<c text="None" code=""NONE""></c>
</choices>
</dropdown>
</fields>
</block>
<block tag="show_hide_startappbanner" spec="%0 StartApp Banner Ad [c:startapp]" code="StartApp.~Banner();" help="Show/Hide Banner" type="action" color="charcoal" returns="void">
<fields>
<dropdown order="0">
<choices>
<c text="Show" code="show"></c>
<c text="Hide" code="hide"></c>
</choices>
</dropdown>
</fields>
</block>
<block tag="load_startappAd" spec="Load StartApp %0 Ad [c:startapp]" code="StartApp.load~();" help="Load Interststitial first before you can show it." type="action" color="charcoal" returns="void">
<fields>
<dropdown order="0">
<choices>
<c text="Interstitial" code="Interstitial"></c>
<c text="Rewarded" code="Rewarded"></c>
</choices>
</dropdown>
</fields>
</block>
<block tag="show_startappAd" spec="Show StartApp Interstitial/Rewarded Ad [c:startapp]" code="StartApp.showInterstitial();" help="Load Interststitial first before you can show it." type="action" color="charcoal" returns="void">
<fields>
</fields>
</block>
<block tag="setbannerposition_startappbanner" spec="Move StartApp Banner to %0 [c:startapp]" code="StartApp.setBannerPosition(~);" help="Show/Hide Banner" type="action" color="charcoal" returns="void">
<fields>
<dropdown order="0">
<choices>
<c text="Bottom" code=""BOTTOM""></c>
<c text="Top" code=""TOP""></c>
</choices>
</dropdown>
</fields>
</block>
<block tag="getbannerinfoStartApp" spec="StartApp Banner Ad %0 [c:startapp]" code="StartApp.~()" type="normal" color="charcoal" returns="boolean">
<fields>
<dropdown order="0">
<choices>
<c text="did display" code="bannerDidDisplay"></c>
<c text="failed to load" code="bannerFailedToLoad"></c>
<c text="is clicked" code="bannerIsClicked"></c>
</choices>
</dropdown>
</fields>
</block>
<block tag="getinterstitialInfoStartApp" spec="StartApp Interstitial/Rewarded Ad %0 [c:startapp]" code="StartApp.~()" type="normal" color="charcoal" returns="boolean">
<fields>
<dropdown order="0">
<choices>
<c text="is loaded " code="interstitialDidLoad"></c>
<c text="failed to load" code="interstitialFailedToLoad"></c>
<c text="did show" code="interstitialDidShow"></c>
<c text="failed to show" code="interstitialFailedToShow"></c>
<c text="is closed" code="interstitialDidClosed"></c>
<c text="is clicked" code="interstitialIsClicked"></c>
<c text="is fully watched" code="rewardedFullyWatched"></c>
</choices>
</dropdown>
</fields>
</block>
<block tag="setConsentStartApp" spec="StartApp set consent to: %0 [c:startapp]" code="StartApp.setConsent(~);" help="Sets users consent" type="action" color="charcoal" returns="void">
<fields>
<dropdown order="0">
<choices>
<c text="YES" code="true"></c>
<c text="NO" code="false"></c>
</choices>
</dropdown>
</fields>
</block>
<block tag="getConsentStartApp" spec="StartApp get consented [c:startapp]" code="StartApp.getConsent()" help="Retruns true(YES) when consent is set to YES and returns false(NO) when consent is set to NO" type="normal" color="charcoal" returns="boolean">
<fields>
</fields>
</block>
</palette>