-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
smartsir796
committed
Apr 25, 2022
1 parent
2a9dd81
commit 7f081c2
Showing
7 changed files
with
163 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,4 +15,4 @@ README.md | |
*.blend | ||
*.fbx | ||
*.zip | ||
*.rar | ||
*.rar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@adshares/decentraland", | ||
"version": "1.1.3", | ||
"version": "1.1.4", | ||
"display-name": "Adshares DCL smart item", | ||
"description": "Adshares Decentraland smart item banner", | ||
"author": "Adshares <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,37 @@ | ||
import { Spawner } from '../node_modules/decentraland-builder-scripts/spawner' | ||
import AdsharesBanner, { Props } from './item' | ||
import AdsharesBanner, {Props} from './item' | ||
|
||
const banner = new AdsharesBanner() | ||
const spawner = new Spawner<Props>(banner) | ||
|
||
spawner.spawn( | ||
'banner', | ||
new Transform({ | ||
position: new Vector3(4, 0, 8), | ||
scale: new Vector3(2, 2, 0.1), | ||
}), | ||
{ | ||
payout_network: 'ads', | ||
payout_address: '0001-000000F1-6451', | ||
keywords: 'decentraland,metaverse', | ||
zone_name: 'default', | ||
adserver: 'https://adserver.priv', | ||
exclude: '{"quality": ["low"], "category": ["adult"]}', | ||
}, | ||
'banner', | ||
new Transform({ | ||
position: new Vector3(4, 0, 8), | ||
scale: new Vector3(2, 2, 0.1), | ||
}), | ||
{ | ||
payout_network: 'ads', | ||
payout_address: '0001-000000F1-6451', | ||
keywords: 'decentraland,metaverse', | ||
zone_name: 'default', | ||
adserver: 'https://adserver.priv', | ||
exclude: '{"quality": ["low"], "category": ["adult"]}', | ||
}, | ||
) | ||
|
||
spawner.spawn( | ||
'banner', | ||
new Transform({ | ||
position: new Vector3(6, 0, 6), | ||
scale: new Vector3(2, 2, 0.1), | ||
}), | ||
{ | ||
payout_network: 'ads', | ||
payout_address: '0001-000000F1-6451', | ||
keywords: 'decentraland,metaverse', | ||
zone_name: 'default', | ||
adserver: 'https://adserver.priv', | ||
exclude: '{"quality": ["low"], "category": ["adult"]}', | ||
}, | ||
'banner', | ||
new Transform({ | ||
position: new Vector3(6, 0, 6), | ||
scale: new Vector3(2, 2, 0.1), | ||
}), | ||
{ | ||
payout_network: 'ads', | ||
payout_address: '0001-000000F1-6451', | ||
keywords: 'decentraland,metaverse', | ||
zone_name: 'default', | ||
adserver: 'https://adserver.priv', | ||
exclude: '{"quality": ["low"], "category": ["adult"]}', | ||
}, | ||
) |
Oops, something went wrong.