-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblocks.xml
More file actions
executable file
·109 lines (102 loc) · 3.41 KB
/
Copy pathblocks.xml
File metadata and controls
executable file
·109 lines (102 loc) · 3.41 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
100
101
102
103
104
105
106
107
108
109
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<palette>
<block tag="initVungle"
code="Vungle.init();"
spec="Initialize Vungle ads [c:vungle]"
type="action"
color="charcoal"
returns="void"
category="mobile"
help="Initialize Vunle SDK."
helpURL="https://byrobingames.github.io/vungle">
<fields>
</fields>
</block>
<block tag="loadVungleAds"
spec="Load Vungle Ad with placementId: %0 [c:vungle]"
code="Vungle.loadAd(~);"
type="action"
color="charcoal"
returns="void"
category="mobile"
help="Loads Vungle ads"
helpURL="https://byrobingames.github.io/vungle">
<fields>
<text order="0"></text>
</fields>
</block>
<block tag="showVideoVungle"
spec="Show Vungle %0 with placementId: %1 [c:vungle]"
code="Vungle.show~(~);"
type="action"
color="charcoal"
returns="void"
category="mobile"
help="Shows an ad with placementId"
helpURL="https://byrobingames.github.io/vungle">
<fields>
<dropdown order="0">
<choices>
<c text="Interstitial Ad" code="Interstitial"></c>
<c text="Rewarded Video" code="Rewarded"></c>
</choices>
</dropdown>
<text order="1"></text>
</fields>
</block>
<block tag="setConsentVungle"
spec="Vungle set consent to: %0 [c:vungle]"
code="Vungle.setConsent(~);"
type="action"
color="charcoal"
returns="void"
category="mobile"
help="Set users consent programmatically"
helpURL="https://byrobingames.github.io/vungle">
<fields>
<dropdown order="0">
<choices>
<c text="OPTED_IN" code="true"></c>
<c text="OPTED_OUT" code="false"></c>
</choices>
</dropdown>
</fields>
</block>
<block tag="getConsentVungle"
spec="Vungle get consented [c:vungle]"
code="Vungle.getConsent()"
type="normal"
color="charcoal"
returns="boolean"
category="mobile"
help="Returns true(OPTED_IN) when consent is set to OPTED_IN and returns false(OPTED_OUT) when consent is set to OPTED_OUT"
helpURL="https://byrobingames.github.io/vungle">
<fields>
</fields>
</block>
<block tag="getAdInfoVungle"
spec="Vungle Ad with placementId: %1 %0 [c:vungle]"
code="Vungle.~(~)"
type="normal"
color="charcoal"
returns="boolean"
category="mobile"
help="Returns true of false"
helpURL="https://byrobingames.github.io/vungle">
<fields>
<dropdown order="0">
<choices>
<c text="is available " code="adIsAvailable"></c>
<c text="is not available" code="adIsNotAvailable"></c>
<c text="will show" code="adWillShow"></c>
<c text="is closed" code="adClosed"></c>
<c text="is clicked" code="adisClicked"></c>
<c text="(iOS Only)has download Advertising App" code="hasDownloadedApp"></c>
<c text="is fully watched" code="adFullyWatched"></c>
<c text="is not fully watched" code="adNotFullyWatched"></c>
</choices>
</dropdown>
<text order="1"></text>
</fields>
</block>
</palette>