-
Notifications
You must be signed in to change notification settings - Fork 343
/
package.json
35 lines (35 loc) · 1.52 KB
/
package.json
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
{
"name": "com.unity.2d.tilemap.extras",
"displayName": "2D Tilemap Extras",
"version": "2.2.5",
"unity": "2021.1",
"description": "2D Tilemap Extras is a package that contains extra scripts for use with 2D Tilemap features in Unity. These include custom Tiles and Brushes for the Tilemap feature.\n\nThe following are included in the package:\nBrushes: GameObject Brush, Group Brush, Line Brush, Random Brush\nTiles: Animated Tile, Rule Tile, Rule Override Tile\nOther: Grid Information, Custom Rules for Rule Tile",
"keywords": ["2d"],
"category": "2D",
"dependencies": {
"com.unity.modules.tilemap": "1.0.0",
"com.unity.2d.tilemap": "1.0.0",
"com.unity.ugui": "1.0.0",
"com.unity.modules.jsonserialize": "1.0.0"
},
"relatedPackages": {
"com.unity.2d.tilemap.extras.tests": "2.2.5"
},
"samples": [
{
"displayName": "Waterfall Animated Tile",
"description": "An example implementation of an Animated Tile.",
"path": "Samples~/WaterfallAnimatedTile"
},
{
"displayName": "Pipe Rule Tile",
"description": "An example implementation of a Rule Tile with rules matching four-way orthogonal neighbors.",
"path": "Samples~/PipeRuleTile"
},
{
"displayName": "Dungeon Rule Tile",
"description": "An example implementation of a Rule Tile with rules matching eight-way orthogonal and diagonal neighbors.",
"path": "Samples~/DungeonRuleTile"
}
]
}