-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblocks.xml
More file actions
executable file
·55 lines (49 loc) · 2.14 KB
/
Copy pathblocks.xml
File metadata and controls
executable file
·55 lines (49 loc) · 2.14 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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<palette>
<block tag="initLeadbolt" spec="Initialize Leadbolt [c:leadbolt]" code="Leadbolt.init();" help="Inititalize Leadbolt ads at the begin of your project!" type="action" color="charcoal" returns="void">
<fields>
</fields>
</block>
<block tag="fetch-show-InterstitialLeadbolt" spec="Leadbolt: %0 Interstitial Ad [c:leadbolt]" code="Leadbolt.~();" type="action" color="charcoal" returns="void">
<fields>
<dropdown order="0">
<choices>
<c text="Load" code="fetchInterstitial"></c>
<c text="Show" code="showInterstitial"></c>
</choices>
</dropdown>
</fields>
</block>
<block tag="fetch-show-RewardedVideoLeadbolt" spec="Leadbolt: %0 Rewarded Video Ad [c:leadbolt]" code="Leadbolt.~();" type="action" color="charcoal" returns="void">
<fields>
<dropdown order="0">
<choices>
<c text="Load" code="fetchRewardedVideo"></c>
<c text="Show" code="showRewardedVideo"></c>
</choices>
</dropdown>
</fields>
</block>
<block tag="getAdInfoLeadbolt" spec="Leadbolt: Ad %0 [c:leadbolt]" code="Leadbolt.getAdInfo(~)" type="normal" color="charcoal" returns="boolean">
<fields>
<dropdown order="0">
<choices>
<c text="did successfully load" code="0"></c>
<c text="did fail to load" code="1"></c>
<c text="is Closed" code="2"></c>
<c text="is clicked" code="3"></c>
</choices>
</dropdown>
</fields>
</block>
<block tag="getRewardedInfoLeadbolt" spec="Leadbolt: Rewarded Video %0 [c:leadbolt]" code="Leadbolt.getRewardedVideoInfo(~)" type="normal" color="charcoal" returns="boolean">
<fields>
<dropdown order="0">
<choices>
<c text="has been fully watched" code="0"></c>
<c text="has not been fully watched" code="1"></c>
</choices>
</dropdown>
</fields>
</block>
</palette>