当前位置:网站首页>[Unity Getting Started Plan] Basic Concepts (8) - Tile Map TileMap 01
[Unity Getting Started Plan] Basic Concepts (8) - Tile Map TileMap 01
2022-08-03 16:08:00 【flashinggg】
目录
3 Tilemap Renderer Tile map renderer
3.1 Sort Order The tile arrangement order
3.3 Detect Chunk Culling Bounds How to detect boundaries
4 The creation process of the tile map
4.3 The tile map can be started
1 TileMap概念
Tilemapis used to create2Dgame world map,Common side view、俯视、斜45angle of view2DIt can be used to draw game maps.
主要思想
Draw each type of terrain in the game world as a separate block,例如RubyAdventureThe project resources provide different terrains that can be used to generateTile的精灵:
用正方形、菱形或者六边形One of the three as the shape of each piece separates the whole piece,Again like tiles/Assembled like tiles.on how to divide,后续会进行介绍.
优点
Improve the reusability of art resources,And using such a tool can greatly simplify the workload of mapping.
created hierarchy
一般在一个2D游戏项目中,TilemapCreation will be divided into three levels
- background——地图背景
- bound——边界
- foreground——前景,Mainly terrain
2 Unity中的TileMap
Unity中TileMapis used as a game object,for storage and handlingTile Assets,It's more like a system,将Tilestransfer to other related components.
Unity中的TileMap由五个部分组成:
2.1 auto parentGrid 网格
创建一个Tilemap:
GameObject -> 2D Object ->Tilemap选择类型
When we follow this path to create one瓦片地图时,UnityA parent object of the current tilemap object is automatically created(默认名称叫Grid),这个GridIt is equivalent to a collection of connected grids,Each grid will store oneTile,Grid的Cell Sizeand other properties can change the size of the grid.
2.2 Sprite精灵
在【Unity入门计划】基本概念(6)-精灵渲染器 Sprite RendererIntroduce what a sprite is,它其实就是一个2D的Texture容器.
2.3 Tile 瓦片
A tile contains a sprite and two components.创建方法:
Project窗口 -> Create -> 2D -> Tiles选择类型
新建的TileNeed to give it a sprite,That is to give it a texture.SelectYou can select the sprite.You can also change its collider type,默认是Sprite精灵.
2.4 Tile Palette 调色板
The tile map can be drawn quickly,There are two ways to create it:
第一,从Project面板创建
Project窗口 -> Create -> 2D -> Tile Palette选择类型
第二,创建了Tilemap后,从Scene打开PaletteWindow panel creation
Both require selection of the file path for storage.
2.5 Brush 笔刷
Tools in the palette for drawing tile maps.
3 Tilemap Renderer Tile map renderer
它是Tile MapA part of a GameObject,What the sprite renderer is for sprites,It is also used to control the currentTile在Tilemap上的渲染,有以下属性.
3.1 Sort Order The tile arrangement order
这个很简单,is to prescribe eachTile在整个Tilemapthe order of the above.The contextual relationship is reflected through the layer order.
3.2 Mode 渲染模式
渲染模式有两种
Chunk 分块渲染
Use tiled mode for batch rendering,This is also the default rendering method,选择ChunkThe post renderer groups tiles by location,Batch render the sprites on the tile together,The best rendering performance can be obtained in tilemaps.
Individual Render separately
Render each tile individually and take into account position and sort order.
3.3 Detect Chunk Culling Bounds How to detect boundaries
有两个值,Auto和Manual,自动和手动.The default is automatic monitoring.At this point the renderer will automatically check the sprite used.当选择ManualWhen you need to enter a value for the proposed boundary extension.
3.4 Mask Interaction 遮罩
This is similar to the sprite renderer,就不赘述,Once you use it, you will know what it does.
3.5 Material 材质
Defines the material used to render sprite textures.
The rest is the layer relationship,不赘述.
4 The creation process of the tile map
4.1 创建Sprite&Tile
First you need a tile that you want to be a tile map elementTile,Also need sprites as textures,So usually one is passed in2DPictures as sprites.
例如RubyAdventureOne is given in the official tutorialPNG纹理素材,Import and willType改为Sprite
下面是创建Tile,按照2.3The creation ideas in Create oneRule Tilebase tile,命名为BrickTile,And assign the sprite you just created to him.
4.2 创建Tilemap&Tile Palette
GameObject -> 2D Object ->Tilemap创建RectangularType of tilemap,Also the parent is created automaticallyGrid.
点开Palette Window,新建一个Palette命名为GamePalette,并将之前创建的Tile拖进去.
4.3 The tile map can be started
4.4 问题处理:Grid有缝隙
如下,The tile does not fill the entiretyGrid
更改TilemapThe pixel size of the sprite,更改成64即可.
修改后的结果:
This is how the tilemap is initially created,But for general projects,Provided will be a collection of multiple tiles,02section will introduce aboutTile的其他方面的内容.
边栏推荐
- 小熊派——无线联网开发
- 16 【过渡 动画】
- How to get the 2 d space prior to ViT?UMA & Hong Kong institute of technology & ali SP - ViT, study for visual Transformer 2 d space prior knowledge!.
- 泰山OFFICE技术讲座:文字边框高度研究
- 不可忽略!户外LED显示屏的特点及优势
- 基于DMS的数仓智能运维服务,知多少?
- Js array method is summarized
- 参与便有奖,《新程序员》杂志福利来袭!
- 爬虫注意
- 技术干货|如何将 Pulsar 数据快速且无缝接入 Apache Doris
猜你喜欢
证实了,百度没有快照了
【QT】Qt项目demo:数据在ui界面上显示,鼠标双击可弹窗显示具体信息
土耳其国防部:联合协调中心将对首艘乌克兰粮船进行安全检查
Ark server opening tutorial win
Difference and performance comparison between HAL and LL library of STM32
《安富莱嵌入式周报》第276期:2022.07.25--2022.07.31
深入浅出Flask PIN
JD6606SP5_JD6606SSP_JD6606SASP_JD6621W7百盛新纪元授权代理商
基于牛顿方法在直流微电网潮流研究(Matlab代码实现)
6000 字+,帮你搞懂互联网架构演变历程!
随机推荐
土耳其国防部:联合协调中心将对首艘乌克兰粮船进行安全检查
How to use binary search and find whether the rotation in the array contains a (target) value?Rotate the sorted array leetcode 81. Search
您的移动端app安全吗
聊聊这个SaaS领域爆火的话题
Leetcode76. 最小覆盖子串
下午见!2022京东云数据库新品发布会
【QT】Qt 给已经开发好的程序快速封装成动态库
Not to be ignored!Features and advantages of outdoor LED display
【深度学习】今日bug(8月2)
PWA 应用 Service Worker 缓存的一些可选策略和使用场景
Neural networks, cool?
spark入门学习-2
扩展欧几里得求逆元实例
分享一款免费OPC UA服务器
开源一夏 | 阿里云物联网平台之极速体验
AI也有健忘症?英国41岁教授专访:解决灾难性遗忘
MySQL中的基数是啥?
深度学习——安装CUDA以及CUDNN实现tensorflow的GPU运行
一文看懂推荐系统:召回02:Swing 模型,和itemCF很相似,区别在于计算相似度的方法不一样
I am doing open source in Didi