Archived
Private
Public Access
1
0
This repository has been archived on 2026-02-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ProjectBackup/Unity/Testproject/Library/PackageCache/com.unity.2d.tilemap.extras@2.0.0/Documentation~/GridInformation.md
2022-11-12 13:10:03 +01:00

1.7 KiB

Grid Information

This is a simple component that stores and provides information based on Grid positions and keywords.

Usage

Add this Component to a GameObject with a Grid component. To store information on to the Grid Information component, use the following APIs:

public bool SetPositionProperty(Vector3Int position, String name, int positionProperty)

public bool SetPositionProperty(Vector3Int position, String name, string positionProperty)

public bool SetPositionProperty(Vector3Int position, String name, float positionProperty)

public bool SetPositionProperty(Vector3Int position, String name, double positionProperty)

public bool SetPositionProperty(Vector3Int position, String name, UnityEngine.Object positionProperty)

public bool SetPositionProperty(Vector3Int position, String name, Color positionProperty)

To retrieve information from the Grid Information component, use the following APIs:

public T GetPositionProperty<T>(Vector3Int position, String name, T defaultValue) where T : UnityEngine.Object

public int GetPositionProperty(Vector3Int position, String name, int defaultValue)
    
public string GetPositionProperty(Vector3Int position, String name, string defaultValue)
    
public float GetPositionProperty(Vector3Int position, String name, float defaultValue)
    
public double GetPositionProperty(Vector3Int position, String name, double defaultValue)
    
public Color GetPositionProperty(Vector3Int position, String name, Color defaultValue)

You can use this in combination with Scriptable Tiles to get the right TileData when creating the layout of your Tilemap.