Fastest Way To Create NFT Game Unity 2023!

  Рет қаралды 41,769

Big Bird Games

Big Bird Games

2 жыл бұрын

BUY NFT SHOWCASE TEMPLATE HERE - www.bigbirdgames.com/workshop
In this tutorial I will show you how to set up wallet sign-in in your game and show NFTs as in-game objects as well as display wallet address. Scripts pinned in comments. If your having trouble playing your game in the web browser, go to your build settings - player - and set to one of the web3 templates.
Here is the link to ChainSafe SDK - github.com/ChainSafe/web3.uni...
Website - bigbirdgames.com
Twitter - / bigbirdgames000

Пікірлер: 59
@bigbirdgames6659
@bigbirdgames6659 2 жыл бұрын
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class GetAccount : MonoBehaviour { public Text myAccount; // Start is called before the first frame update void Start() { myAccount.text = PlayerPrefs.GetString("Account"); } // Update is called once per frame void Update() { } }
@bigbirdgames6659
@bigbirdgames6659 2 жыл бұрын
using System.Collections; using System.Numerics; using System.Collections.Generic; using UnityEngine; public class ERC1155BalanceOfExample : MonoBehaviour { public string tokenId = "0071993575657267661155240257359913680897"; public GameObject chin1; async void Start() { string chain = "polygon"; string network = "mainnet"; string contract = "0x6d2CbACD8A89cF0599974963"; string account = PlayerPrefs.GetString("Account"); BigInteger balanceOf = await ERC1155.BalanceOf(chain, network, contract, account, tokenId); print(balanceOf); if (balanceOf > 0) { chin1.SetActive(true); } } }
@bigbirdgames6659
@bigbirdgames6659 2 жыл бұрын
@Henry Okoro u open it in unity only . In the top left you click import custom package select the file
@bigbirdgames6659
@bigbirdgames6659 Жыл бұрын
FOR MOBILE APPLICATIONS OR DESKTOP use the walletlogin scene instead of Weblogin scene!!! cheers
@AndyCarr
@AndyCarr 2 жыл бұрын
Brilliant - look forward to trying!
@Zulu345
@Zulu345 6 ай бұрын
Complicating to understand some concepts but super cool thank you.
@mulagraphics
@mulagraphics 2 жыл бұрын
Nice video, Please make more videos- building a Metaverse with unity3d and metamask
@chippyman7823
@chippyman7823 2 жыл бұрын
Let’s go baby 🤘
@arslanmughalarsi
@arslanmughalarsi 2 жыл бұрын
Great video. Very simple steps. Do watch this video if you want get details of players NFTs.
@mobogamer2598
@mobogamer2598 2 жыл бұрын
Thanks man
@charzulu
@charzulu 2 жыл бұрын
Sheesh u saved me months
@SrExperimental
@SrExperimental 2 жыл бұрын
Could you teach how to implement a Token Mining function within this game you created?
@uncleiroh719
@uncleiroh719 2 жыл бұрын
Can u do a tutorial about implementing stats to these NFTs in game?
@hassang.4305
@hassang.4305 2 жыл бұрын
Hello, two questions: Does this work on Solana NFTs? Does this work on android and ios builds? Thanks!
@Mas-Gamez
@Mas-Gamez 11 ай бұрын
hey, really nice. can i buy nft inside game? any reference of purchase method? 🙂
@bigbirdgames6659
@bigbirdgames6659 Жыл бұрын
FOR MOBILE APPLICATIONS OR DESKTOP use the walletlogin scene instead of Weblogin scene!!! cheers
@DustVoltrage
@DustVoltrage Жыл бұрын
So we can build for desktop games, not only web game, right ?!
@bigbirdgames6659
@bigbirdgames6659 Жыл бұрын
@@DustVoltrage use wallet login scene
@KaelStitches
@KaelStitches 2 жыл бұрын
bro can we make this with unreal engine ? if you know that can u make a tutorial ?
@mildrek8552
@mildrek8552 2 жыл бұрын
Thanks mate this video is really helpfull ! But what if i start a collection ? i'll need to add the 10K item manually into the game and hide them ?
@bigbirdgames6659
@bigbirdgames6659 2 жыл бұрын
Yeah you gotta set each nft up to show . Would need to call the functions for each one. It’s really only ideal for small collections
@mildrek8552
@mildrek8552 2 жыл бұрын
@@bigbirdgames6659 Alright thanks for you quick answer 🙏 Have a good one mate
@user-vm6fk9wf9y
@user-vm6fk9wf9y 5 ай бұрын
is this related to blockchain and nft?
@user-so1pz7kc9v
@user-so1pz7kc9v Жыл бұрын
when you build your project Webgl you shoud check your project settings -> player -> resolution and presentaition-> webgl template ->web3gl-2020x
@MG619Day
@MG619Day Жыл бұрын
Can you do this for unreal engine?
@JFKTLA
@JFKTLA 2 жыл бұрын
how can we call custom functions from the contract. I don’t want to use the pre functions they have
@bigbirdgames6659
@bigbirdgames6659 2 жыл бұрын
You edit the script
@falcha91
@falcha91 Жыл бұрын
How did you build the character selection? Could you share the script for that or explain how you did it?
@albertogallarzo9918
@albertogallarzo9918 2 жыл бұрын
with this chainsafe can we connect with wax marketplace and wallets?
@bigbirdgames6659
@bigbirdgames6659 2 жыл бұрын
I’m sure it will work just put in the correct details. tokenid/contract etc
@dilldevai
@dilldevai 2 жыл бұрын
Chin Men lfg!!!!!!!!
@THEBILLLIONAIREBRAIN
@THEBILLLIONAIREBRAIN Жыл бұрын
Are you available for Game Development consultation work? DM
@Dark-art-of-psychology
@Dark-art-of-psychology Жыл бұрын
Yooo great video but is there a way we can make it p2e/play 2 earn
@bigbirdgames6659
@bigbirdgames6659 Жыл бұрын
Check out other chainsafe videos on they’re channel . You could come up with custom ways on doing it by editing the code
@bigbirdgames6659
@bigbirdgames6659 Жыл бұрын
You can mint 1155 in-game now I think , i use screen shot messaging system to tell if anyone won nfts in my game
@Dark-art-of-psychology
@Dark-art-of-psychology Жыл бұрын
@@bigbirdgames6659 ok thank you will do
@mrnajel6454
@mrnajel6454 Жыл бұрын
Hey can you please share the game source code
@wobkgames1126
@wobkgames1126 Жыл бұрын
Probably a silly question. how do we switch it to the mainnet?
@bigbirdgames6659
@bigbirdgames6659 Жыл бұрын
In the script
@HervieAta
@HervieAta 2 жыл бұрын
please do a wax blockchain
@santifmechaniccreations4471
@santifmechaniccreations4471 2 жыл бұрын
the game works but it don"t show the menu to collect the wallet help
@bigbirdgames6659
@bigbirdgames6659 2 жыл бұрын
What browser did you tried it on. I used chrome and I get that issue. Redownloading metamask wallet helped.
@santifmechaniccreations4471
@santifmechaniccreations4471 2 жыл бұрын
@@bigbirdgames6659 i use brave but i will try it in google
@santifmechaniccreations4471
@santifmechaniccreations4471 2 жыл бұрын
@@bigbirdgames6659 i tried but didn"t work
@santifmechaniccreations4471
@santifmechaniccreations4471 2 жыл бұрын
@@bigbirdgames6659 recently i tried a new version of chainsafe and it works thanks!!
@timmyboy2737
@timmyboy2737 2 жыл бұрын
does this works on wax network?
@bigbirdgames6659
@bigbirdgames6659 2 жыл бұрын
Havent tested it but it should work just put in correct details
@Timodia
@Timodia Жыл бұрын
Hello will this work on mobile?
@bigbirdgames6659
@bigbirdgames6659 Жыл бұрын
Yes use wallet login scene first instead of the other one
@asdfish82
@asdfish82 2 жыл бұрын
Does this library work with android?
@bigbirdgames6659
@bigbirdgames6659 2 жыл бұрын
Yes chainsafe has mobile capabilities
@BAGDS-oz9oj
@BAGDS-oz9oj Жыл бұрын
Can I creat use android?
@bigbirdgames6659
@bigbirdgames6659 Жыл бұрын
Yes use walletlogin scene instead
@BAGDS-oz9oj
@BAGDS-oz9oj Жыл бұрын
@@bigbirdgames6659 sir you have telegram?
@meticoreweightlosssuppleme7073
@meticoreweightlosssuppleme7073 Жыл бұрын
a you on Fiverr
@neeronn
@neeronn 2 жыл бұрын
oh bro is very dificult :( :'(
@bigbirdgames6659
@bigbirdgames6659 2 жыл бұрын
Keep trying !
@craigthespacebum
@craigthespacebum 3 ай бұрын
Please update video lol
@arslanmughalarsi
@arslanmughalarsi 2 жыл бұрын
Can you please make a video for solscan.io NFTs also?
A new way to generate worlds (stitched WFC)
10:51
Watt Designs
Рет қаралды 511 М.
I Paid Game Developers on Fiverr to Make the Same Game
9:49
BadGameDev
Рет қаралды 3,4 МЛН
Мы никогда не были так напуганы!
00:15
Аришнев
Рет қаралды 4 МЛН
⬅️🤔➡️
00:31
Celine Dept
Рет қаралды 50 МЛН
How to Create an NFT Collection (10,000+) No Coding Knowledge Needed
9:24
How to Become a Game Designer
15:08
Game Maker's Toolkit
Рет қаралды 1 МЛН
6 BEST NFT Games To Play in 2023 | Play-to-Earn
6:16
CoinGecko
Рет қаралды 137 М.
Simple Fast Travel / Teleport System - Unity 2024 (script below)
7:23
Create blockchain games with Unity and thirdweb part 1
22:29
HashLips Academy
Рет қаралды 16 М.
How to make a CARD GAME - Unity Tutorial 2022
8:07
Blackthornprod
Рет қаралды 190 М.
Pathfinding - Understanding A* (A star)
12:52
Tarodev
Рет қаралды 117 М.
How To Build A $10,000 Website With No-Code + AI
12:42
WeAreNoCode
Рет қаралды 664 М.
How to Create 3D NFT Game Art for Sale in Under 10 Minutes! (NO Coding Voxel Tutorial - The Sandbox)
18:45
Influencer Unchained - Digital Entrepreneurship
Рет қаралды 294 М.
How to get convenience store snack for free
1:00
Mykoreandic
Рет қаралды 45 МЛН
I respect children #respect #respectshorts
0:34
Movie Copy
Рет қаралды 9 МЛН
Safe
0:16
OHIOBOSS SATOYU
Рет қаралды 3,3 МЛН