Code Snippets from video https://www.youtube.com/watch?v=iOlXgY2nQe4
https://github.com/CardanoSharp/CardanoSharp.DbSync.EFCore
This is for getting new Metadata
I hereby claim:
- I am nothingalike on github.
- I am kljohns (https://keybase.io/kljohns) on keybase.
- I have a public key ASCg3MbFoCXJsEoUAqmn4ClNHL-n51YG9SepMvYthmDdjwo
To claim this, I am signing this object:
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
#We need to import our 'requests' library/package in order to have the ability to make an HTTP call | |
import requests | |
def checkKey(dict, key): | |
# Original Logic | |
# if key in dict.keys(): | |
# return True | |
# else: | |
# return False |
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
public class PrisonTile : Tile { | |
[SerializeField] | |
private Sprite[] prisonSprites; | |
[SerializeField] | |
private Sprite preview; | |
public override void GetTileData(Vector3Int position, ITilemap tilemap, ref TileData tileData) | |
{ |