BAM GAMES & APPS - Unity Tutorials
BAM GAMES & APPS - Unity Tutorials
  • 31
  • 3 413
🔎 HOW TO FIND A GAMEOBJECT BY NAME IN UNITY - GameObject.Find | Unity Tutorial
HOW TO FIND A GAMEOBJECT BY NAME IN UNITY - GameObject.Find | Unity Tutorial
In this NEW Unity tutorial, we are going to learn how to find a GameObject of our Unity scene from the script to be able to make changes or obtain information from it.
To do this, we will modify our c# script to use the GameObject.Find method. Next, we will see how we can access the object and its different components as well as modify its properties.
In this example we will modify the rotation (Transform) and the color (Image).
I'll explain in detail how to do this and show you all the tips and tricks I know in Unity!!!
Have a nice day Unity developer!
❗️KEEP LEARNING❗️
ua-cam.com/play/PLjQFtm3o3dPvyUHUJPERHKkwVb0j3j_jP.html
Переглядів: 24

Відео

🔀 HOW TO CHANGE THE COLOR OF AN OBJECT THROUGH SCRIPT IN UNITY | Unity Tutorial
Переглядів 17День тому
HOW TO CHANGE THE COLOR OF AN OBJECT THROUGH SCRIPT IN UNITY | Unity Tutorial In this NEW Unity tutorial, we are going to learn how to change the color of an object in Unity directly from the script by modifying its Image component. To do this, we are going to get the component from the c# script using the GetComponent method. Afterwards, we will modify its color property and see the result. Fo...
🔀 HOW TO CREATE A TOGGLE BUTTON IN UNITY - Switch Button | Unity Tutorial
Переглядів 2614 днів тому
HOW TO CREATE A TOGGLE BUTTON IN UNITY - Switch Button | Unity Tutorial In this NEW Unity tutorial, we are going to learn how to easily create a switch button in Unity that will allow us to activate or deactivate options in our Unity game. To do this, we will configure the UI of our scene in Unity and implement a script in which we will define all the logic for the ON/OFF button. We will optimi...
HOW TO KEEP OBJECTS WHEN CHANGING SCENES IN UNITY - DontDestroyOnLoad | Unity Tutorial
Переглядів 3921 день тому
HOW TO KEEP OBJECTS WHEN CHANGING SCENES IN UNITY - DontDestroyOnLoad | Unity Tutorial In this NEW Unity tutorial, we are going to learn how to keep objects (don't destroy GameObjects) and their scripts when changing scenes. This will allow us to transfer information from one scene to another easily in Unity. To do this, we will use the DontDestroyOnLoad method, which will ensure that our GameO...
🔊 HOW TO ADD MUSIC AND SOUND EFFECTS TO A GAME IN UNITY | Unity Tutorial
Переглядів 16Місяць тому
HOW TO ADD MUSIC AND SOUND EFFECTS TO A GAME IN UNITY | Unity Tutorial In this NEW Unity tutorial, we are going to learn how to add background music and sound effects when interacting with UI buttons in Unity thanks to the Audio Listener. To do this, we will see how to download these sounds for free, import the music into our Unity game, configure the Unity UI to be able to play the music on st...
💬 LOGGING IN UNITY - CONSOLE DEBUGGING BASICS | Unity Tutorial
Переглядів 19Місяць тому
LOGGING IN UNITY - CONSOLE DEBUGGING BASICS | Unity Tutorial In this NEW Unity tutorial we are going to learn how to show logs in the Unity console to help us testing and debugging our game in Unity. This is a basic feature that everybody should know and it's essential for beginners in Unity. To do this, we will use the Debug.Log method in our c# script in Unity and implement the three differen...
⏳ HOW TO MAKE A COUNTDOWN TIMER IN UNITY | Unity Tutorial for Beginners | Unity Tutorial
Переглядів 14Місяць тому
⏳ HOW TO MAKE A COUNTDOWN TIMER IN UNITY | Unity Tutorial for Beginners | Unity Tutorial In this NEW Unity tutorial we are going to learn how to create and manage a timer countdown in Unity using the Time.deltaTime feature. To do this, we will first configure the Unity UI to show the timer countdown in a text, a button to start the countdown timer, a button to reset the countdown timer and a po...
TIMER FORMATTING IN UNITY - TEXT FORMAT (HH:MM:SS) | Unity Tutorial
Переглядів 15Місяць тому
TIMER FORMATTING IN UNITY - TEXT FORMAT (HH:MM:SS) | Unity Tutorial In this NEW Unity tutorial we are going to learn how to format a timer to show it in a text component as mm:ss (minutes:seconds) and hh:mm:ss (hours:minutes:seconds) in our Unity UI. To be able to follow up this tutorial you need to implement first a timer in Unity following the previous Unity tutorial: ✅ HOW TO MAKE A TIMER IN...
⏱ HOW TO MAKE A TIMER IN UNITY | Easy Beginners Tutorial | Unity Tutorial
Переглядів 24Місяць тому
⏱ HOW TO MAKE A TIMER IN UNITY | Easy Beginners Tutorial | Unity Tutorial In this NEW Unity tutorial we are going to learn how to create a timer in Unity to know the time elapsed in our scene or game. To do this we will configure the Unity UI of our game and later implement the code in the c# script using the Time.deltaTime feature to calculate the time elapsed. Finally, we will convert our flo...
🎥 HOW TO CHANGE SCENES IN UNITY USING A BUTTON - EASIEST METHOD | Unity Tutorial
Переглядів 142 місяці тому
🎥 HOW TO CHANGE SCENES IN UNITY USING A BUTTON - EASIEST METHOD | Unity Tutorial In this NEW Unity tutorial we are going to learn how to create and manage scenes in Unity using the Scene Manager feature. To do this we will follow the next steps: 00:38 - Create a new scene in Unity 02:14 - Configure the scenes in Build 03:33 - Click a button to change the scene in Unity | SceneManager c# script ...
🔗 HOW TO OPEN A WEBSITE OR URL IN UNITY - HYPERLINKS | Unity Tutorial
Переглядів 422 місяці тому
🔗 HOW TO OPEN A WEBSITE OR URL IN UNITY - HYPERLINKS | Unity Tutorial In this NEW Unity tutorial we are going to learn how to redirect our users to a website outside of our Unity game. To do this we will use the Application.OpenUrl feature of Unity to open a url from our Unity game so that the user can rate our game, go to our social networks, visit a product page, etc. I'll explain in detail h...
🌐 CHECK INTERNET AVAILABILITY IN UNITY - INTERNET CONNECTIVITY CHECKER | Unity Tutorial
Переглядів 952 місяці тому
🌐 CHECK INTERNET AVAILABILITY IN UNITY - INTERNET CONNECTIVITY CHECKER | Unity Tutorial In this NEW Unity tutorial we are going to learn how to check if the player of our Unity game is connected to the internet. To do this we will use a command to check if the network is reachable creating an internet connectivity checker inside our Unity game. We will implement some additional features from pr...
COROUTINES IN UNITY - HOW AND WHEN TO USE IENUMERATOR | Unity Tutorial
Переглядів 182 місяці тому
COROUTINES IN UNITY - HOW AND WHEN TO USE IENUMERATOR | Unity Tutorial In this NEW Unity tutorial we are going to learn how to implement a coroutine in Unity to spread tasks across several frames. The coroutines will allow us to wait before executing part of the code so we can show animations before destroying an object, show a message after an action is completed in our Unity game, etc. Offici...
⚠️ HOW TO MAKE POP UP NOTIFICATIONS - POP UP WINDOW IN UNITY | Unity Tutorial
Переглядів 1172 місяці тому
⚠️ HOW TO MAKE POP UP NOTIFICATIONS - POP UP WINDOW IN UNITY | Unity Tutorial In this NEW Unity tutorial we are going to learn how to create and show a pop up notification in our Unity game. To do this, we will first configure the pop up window in the Unity UI implementing optimizations and some extra configurations you need to know! Later, we will modify our c# script to show the pop up notifi...
⬆️ ⬇️ HOW TO IMPORT AND EXPORT UNITY PACKAGES | Unity Quick Tip | Unity Tutorial
Переглядів 243 місяці тому
⬆️ ⬇️ HOW TO IMPORT AND EXPORT UNITY PACKAGES | Unity Quick Tip | Unity Tutorial In this NEW Unity tutorial we are going to learn how to export a Unity package and how to import a Unity package to save time during the development or to save a copy of our Unity project that can be quickly restored. Make sure to learn how to import files in Unity and how to export files in Unity as this is an ess...
[🆕 2024] HOW TO CREATE A REWARDED AD IN UNITY USING GOOGLE ADMOB | Unity Tutorial
Переглядів 5893 місяці тому
[🆕 2024] HOW TO CREATE A REWARDED AD IN UNITY USING GOOGLE ADMOB | Unity Tutorial
📩 HOW TO SAVE GAME DATA IN UNITY WITH PLAYERPREFS - BASIC SAVING AND LOADING METHOD | Unity Tutorial
Переглядів 323 місяці тому
📩 HOW TO SAVE GAME DATA IN UNITY WITH PLAYERPREFS - BASIC SAVING AND LOADING METHOD | Unity Tutorial
HOW TO ADD A SCORE COUNTER IN UNITY UI | Unity UI Tutorial
Переглядів 803 місяці тому
HOW TO ADD A SCORE COUNTER IN UNITY UI | Unity UI Tutorial
[🆕 2024] HOW TO CREATE AN INTERSTITIAL AD IN UNITY USING GOOGLE ADMOB | Unity Tutorial
Переглядів 3413 місяці тому
[🆕 2024] HOW TO CREATE AN INTERSTITIAL AD IN UNITY USING GOOGLE ADMOB | Unity Tutorial
DESTROY, SHOW AND HIDE A BANNER AD IN UNITY USING GOOGLE ADMOB | Unity Tutorial
Переглядів 1683 місяці тому
DESTROY, SHOW AND HIDE A BANNER AD IN UNITY USING GOOGLE ADMOB | Unity Tutorial
[🆕 2024] HOW TO CREATE AN ADMOB BANNER AD IN UNITY | Unity Tutorial
Переглядів 3743 місяці тому
[🆕 2024] HOW TO CREATE AN ADMOB BANNER AD IN UNITY | Unity Tutorial
[🆕 2024] HOW TO EARN MONEY WITH ADMOB ADS IN UNITY - GOOGLE MOBILE ADS PLUGIN | Unity Tutorial
Переглядів 7054 місяці тому
[🆕 2024] HOW TO EARN MONEY WITH ADMOB ADS IN UNITY - GOOGLE MOBILE ADS PLUGIN | Unity Tutorial
🛠 HOW TO BUILD AN ANDROID APP BUNDLE (aab) IN UNITY | Unity Tutorial
Переглядів 2444 місяці тому
🛠 HOW TO BUILD AN ANDROID APP BUNDLE (aab) IN UNITY | Unity Tutorial
SCALE UNITY UI ELEMENTS FOR EVERY SCREEN RESOLUTION - CANVAS SCALER | Unity UI tutorial
Переглядів 1364 місяці тому
SCALE UNITY UI ELEMENTS FOR EVERY SCREEN RESOLUTION - CANVAS SCALER | Unity UI tutorial
MAKE YOUR MAIN MENU - BUTTON COMPONENT | Unity UI Tutorial For Beginners | Unity Tutorial
Переглядів 214 місяці тому
MAKE YOUR MAIN MENU - BUTTON COMPONENT | Unity UI Tutorial For Beginners | Unity Tutorial
[🆕 2024] HOW TO CREATE UI ANIMATIONS WITHOUT CODING IN UNITY | Unity UI tutorial
Переглядів 624 місяці тому
[🆕 2024] HOW TO CREATE UI ANIMATIONS WITHOUT CODING IN UNITY | Unity UI tutorial
MAKE YOUR MAIN MENU - TEXT COMPONENT | Unity UI Tutorial For Beginners | Unity Tutorial
Переглядів 124 місяці тому
MAKE YOUR MAIN MENU - TEXT COMPONENT | Unity UI Tutorial For Beginners | Unity Tutorial
MAKE YOUR MAIN MENU - IMAGE COMPONENT | Unity UI Tutorial For Beginners | Unity Tutorial
Переглядів 194 місяці тому
MAKE YOUR MAIN MENU - IMAGE COMPONENT | Unity UI Tutorial For Beginners | Unity Tutorial
CREATING OUR FIRST C# SCRIPT IN UNITY | Unity For Beginners | Unity Tutorial
Переглядів 104 місяці тому
CREATING OUR FIRST C# SCRIPT IN UNITY | Unity For Beginners | Unity Tutorial
HOW TO CREATE AND CONFIGURE A PROJECT IN UNITY | Unity For Beginners | Unity Tutorial
Переглядів 114 місяці тому
HOW TO CREATE AND CONFIGURE A PROJECT IN UNITY | Unity For Beginners | Unity Tutorial

КОМЕНТАРІ

  • @justinkirk924
    @justinkirk924 5 днів тому

    Cool

    • @bamgamesapps
      @bamgamesapps 12 годин тому

      Thank you so much @justinkirk924 ! Have a great day 🦾

  • @AhmedGado-h3r
    @AhmedGado-h3r 21 день тому

    Hello thanks for the tutorial, I am facing an issue with admob, I want to implement a functionality to show player on mobile two ads one after another but I want to show the count of ads s/he will view like 1 of 2 ads then 2 of 2 ads ! any idea how to implement this ? or simply I request ad after the first one is shown succeffully and just add ui text element that updates the counter I am talking about ?

    • @bamgamesapps
      @bamgamesapps 14 днів тому

      Hello @AhmedGado-h3r !!! I understand what you want to do, yes, but have not done it in Admob. Not even sure if it's possible do to their policies because you can't place anything on the top of the ads they show. I would suggest to review the policies and ask the support about this to ensure you have no problems in the monetization of your apps and games. Thank you for your questions and have a nice day!!🦾

    • @AhmedGado-h3r
      @AhmedGado-h3r 14 днів тому

      @@bamgamesapps thank you will try to ask the support yes

    • @bamgamesapps
      @bamgamesapps 5 днів тому

      @@AhmedGado-h3r if you get any update I would appreciate that you share here what they said. Thank you so much!

  • @SuperMina7
    @SuperMina7 Місяць тому

    Thanks a million. Your channel deserves Million subscribers. You are the best Unity Teacher on UA-cam😎

    • @bamgamesapps
      @bamgamesapps 14 днів тому

      Thank you so much @SuperMina7 !!! I don't know how I missed your comment, thanks a lot and have a great day 🦾

  • @SuperMina7
    @SuperMina7 Місяць тому

    Many Thanks for this tutorial. You are the best 😇

    • @bamgamesapps
      @bamgamesapps Місяць тому

      Thank you so much @SuperMina7 !!! I hope you keep enjoying the new content that is coming. Have a great day! 🦾

  • @SuperMina7
    @SuperMina7 Місяць тому

    Thanks a lot. You are the best Unity teacher ever

    • @bamgamesapps
      @bamgamesapps Місяць тому

      Thank you so much @SuperMina7 !! I really appreciate your support. Wish you success in your projects🦾

  • @luismendezescobar9049
    @luismendezescobar9049 Місяць тому

    can you show how to do the same but with an script to be used on a pipeline?

    • @bamgamesapps
      @bamgamesapps Місяць тому

      Hello @luismendezescobar9049 !!! To be honest, I've never done that, but I note it as an idea for future videos. Thank you! 🦾

  • @brian_obino
    @brian_obino Місяць тому

    how to setup admob app-ads.txt file for unity game?

  • @mood_bosster
    @mood_bosster 2 місяці тому

    Really Awesome❤. Keep it up 💯

    • @bamgamesapps
      @bamgamesapps Місяць тому

      Thank you so much @mood_bosster !!! Have a great day 🦾

  • @XDrive7494
    @XDrive7494 2 місяці тому

    the link for the loading.cs script is not provided in the description. Could you please share the link to the loading script here?

    • @bamgamesapps
      @bamgamesapps 2 місяці тому

      Hello @XDrive7494 !! Exactly, the objetive is people follows the tutorial to understand the functionality and copies the code if they need. But the main focus is to understand how to do things and see some use cases. Hope you understand my point. Have a nice day!!🦾

  • @tranvanngoan2780
    @tranvanngoan2780 2 місяці тому

    Hi, I have a problem: When i add banner ads and build apk file, it's work but have waring " too many request,..". Do you know how to fix it? Thank you

    • @bamgamesapps
      @bamgamesapps 2 місяці тому

      Hello @tranvanngoan2780 !! To be honest I've never seen that error in my life. Have you tried searching for that error in the Unity forum or other forums such as Stackoverflow, etc? Also if you use chat gpt you could solve it, sometimes gives you hints on how to overcome them. Hope this helps! Have a great day 🦾

  • @samcodebreaker
    @samcodebreaker 2 місяці тому

    Hello..all the ads work in unity when using test id's, but when i test them in my phone, only the banner ad works..the interstitial and rewarded ads dont work..why is this?

    • @bamgamesapps
      @bamgamesapps 2 місяці тому

      Hello @samcodebreaker !! Well multiple things can cause this. Are you using test ads? Else you can have problems showing real ads in your phone for testing purposes. If the ads are working in the editor, it should work in phone too. Maybe the review of your app after publishing didn't happen yet? If that's the case and you're facing limitations, it's normal until review finishes and one of the effects is ads not showing. Hope you can solve it quickly! Have a nice day 🦾

    • @samcodebreaker
      @samcodebreaker 2 місяці тому

      @@bamgamesapps OK thanks..I will be patient

  • @Clayton-it3vj
    @Clayton-it3vj 2 місяці тому

    Hello BAM! Excellent video! A doubt here. I didn't think I saw it in the video, but we need to define the application ID test as well, right? In addition to the test ids of the ads as shown in the video. To test ads.

    • @bamgamesapps
      @bamgamesapps 2 місяці тому

      Hey @Clayton-it3vj !!! Thanks for your question. I use the real APP ID and the test ad units and never had a problem with that. Hope it clarifies your question! Thanks again and have a nice day 🦾

  • @norman8084
    @norman8084 2 місяці тому

    "Promosm"

  • @dancogames12332
    @dancogames12332 2 місяці тому

    Hello! Do we need to initialize the ad again when we go to another scene? Can you please make a video on it please.

    • @bamgamesapps
      @bamgamesapps 2 місяці тому

      Hello @dancogames12332 !! You can attach your script to a GameObject that is not Destroyed even changing scenes so that you just initialize everything once and centralize ads there. I'll make a video on it, sure, noted!!! Thanks for the idea and have a great day 🦾

    • @dancogames12332
      @dancogames12332 2 місяці тому

      @@bamgamesapps thx

    • @bamgamesapps
      @bamgamesapps 2 місяці тому

      @@dancogames12332 Thank you to you!!

  • @ipocu
    @ipocu 2 місяці тому

    give the script full

    • @bamgamesapps
      @bamgamesapps 2 місяці тому

      Hello @ipocu !!! You can copy paste it from the documentation link provided in the description of the video. I just copy pasted from there as you can see in the tutorial🦾

  • @NUZASARY
    @NUZASARY 2 місяці тому

    the explanation is very easy to understand Thank you buddy

    • @bamgamesapps
      @bamgamesapps 2 місяці тому

      Thank you so much @Nuzakun !!! Appreciate your comment supporting the channel. Have a great day!🦾

  • @saadfl6422
    @saadfl6422 2 місяці тому

    THanks man it really helped. Can you please make a tutorial on collapsible

    • @bamgamesapps
      @bamgamesapps 2 місяці тому

      Hello @saadfl6422 !! Noted, great idea. Thank you so much!😃

  • @saadfl6422
    @saadfl6422 2 місяці тому

    I watched many videos for admob but this video really helped me.

    • @bamgamesapps
      @bamgamesapps 2 місяці тому

      Thank you so much @saadfl6422 !!! I'm really happy to read this, hope the rest of tutorials help you too. Have a great day!🦾

  • @TechWithBryan
    @TechWithBryan 2 місяці тому

    Can you show how to build for ios?

    • @bamgamesapps
      @bamgamesapps 2 місяці тому

      Hello @Techwithbryan ! To be honest I've still not tried iOS so for now I can't help there. Hope you find how and will be happy if you share here 🦾

  • @dilshanmaduranga7131
    @dilshanmaduranga7131 2 місяці тому

    Very helpful bro. Keep going. 😍

    • @bamgamesapps
      @bamgamesapps 2 місяці тому

      Thank you so much @dilshanmaduranga7131 !!! Appreciate your support. Have a great day!🦾

  • @PsychoticPanda_
    @PsychoticPanda_ 2 місяці тому

    Bro.. no matter how much Unity is paying you. It's not worth it. Get out while you still can.

    • @bamgamesapps
      @bamgamesapps 2 місяці тому

      Hello @PsychoticPanda_ !!! HAHAHA Unity is not paying me, I just try to share what I do in case it help others 🦾 I've been using Unity for years with no issue and any alternative is welcome for me to analyze too. Have a nice day!🦾

  • @TechWithBryan
    @TechWithBryan 3 місяці тому

    can you create an In app purchase to remove certain ads(banners and interstitial) but not rewarded ads?

    • @bamgamesapps
      @bamgamesapps 2 місяці тому

      Hello @Techwithbryan !! Thank you for the idea, sure I'll do it! But will not be soon as I have some videos ready and prepared. At the end you just need to save a parameter to know if the product was bought or not. If it was bought then don't even call request banner or request interstitial methods and keep calling the request rewarded ad only. Have a nice day!🦾

  • @hongquanvu3302
    @hongquanvu3302 3 місяці тому

    Great video, thanks bro

    • @bamgamesapps
      @bamgamesapps 3 місяці тому

      Thank you so much for the support @hongquanvu3302 !!! Have a nice day 🦾

  • @samcodebreaker
    @samcodebreaker 3 місяці тому

    Could you share the ad codes, I've watched all your videos but nothing works for me.

    • @bamgamesapps
      @bamgamesapps 3 місяці тому

      Hello @samcodebreaker !!! Do you mean the Ad Units? That something you need to create in your Admob account as I show in the video at 01:50. Let me know if you still have any issue to create them🦾

    • @TechWithBryan
      @TechWithBryan 3 місяці тому

      Can you create a tutorial for that in game shop menu?

    • @bamgamesapps
      @bamgamesapps 3 місяці тому

      @@TechWithBryan thank you for the idea, sure I'll do it! But will not be soon as I have some videos ready and prepared. Have a nice day! 🦾

  • @Shopanywant
    @Shopanywant 3 місяці тому

    It helped a lot thank's a lot my friend! Can you make IAP tutorial for consumable and non consumable(Like no ads IAP) purchases? Or if you know good tutorial to use can you recommend please?

    • @bamgamesapps
      @bamgamesapps 3 місяці тому

      Thank you so much @Shopanywant !!! I'll note it, it's a very good idea. Well, as far as I know some details changed and I don't have an updated tutorial to share, but will take it into account for future videos. Have a great day!🦾

    • @Shopanywant
      @Shopanywant 2 місяці тому

      @@bamgamesapps Oh thank you so much pal. I guess lots of new developers don't know this details. If they can see the updated version from someone else. It could be very helpful to them. Have a nice day! 😁👋

    • @bamgamesapps
      @bamgamesapps 2 місяці тому

      @@Shopanywant sure, Admob made changes recently in latest versions and it's important to see a tutorial up to date, else it will not work at all. Have a nice day!🦾

  • @hongquanvu3302
    @hongquanvu3302 3 місяці тому

    Thank you very much bro

    • @bamgamesapps
      @bamgamesapps 3 місяці тому

      Thank you so much to you @hongquanvu3302 for your support! Have a great day 🦾

  • @elit6981
    @elit6981 3 місяці тому

    Is there a way that I can chat with you? Maybe through Skype or something? Or through phone?

    • @bamgamesapps
      @bamgamesapps 3 місяці тому

      Hello @elit6981 !!! You can reach out to me via email if you wish: info@bamfreegames.com Have a nice day!🦾

  • @elit6981
    @elit6981 3 місяці тому

    Hey, I have a small problem,,,, how can I make the rewarded ad load again? It only loads 1 time, then it doesn't load anymore,,, how can I do it?

    • @bamgamesapps
      @bamgamesapps 3 місяці тому

      Hello @elit6981 !!! This explained in the video at 16:30, you can check that part to include the events and manage this. A new ad will be loaded just after the previous one is closed. Hope you fix it easily following the tutorial 🦾

  • @bamgamesapps
    @bamgamesapps 3 місяці тому

    👇 SUPPORT THE CHANNEL 👇 Like the video and subscribe to the channel if you enjoyed the content. It helps a lot and will allow us to expand this community that we are creating around Unity. If you have any questions, let me know in the comments! If you would like to suggest the topic for the next video, leave me a comment too! 🦾KEEP LEARNING🦾 ua-cam.com/play/PLjQFtm3o3dPvyUHUJPERHKkwVb0j3j_jP.html

  • @bamgamesapps
    @bamgamesapps 3 місяці тому

    👇 SUPPORT THE CHANNEL 👇 Like the video and subscribe to the channel if you enjoyed the content. It helps a lot and will allow us to expand this community that we are creating around Unity. If you have any questions, let me know in the comments! If you would like to suggest the topic for the next video, leave me a comment too! 🦾KEEP LEARNING🦾 ua-cam.com/play/PLjQFtm3o3dPvyUHUJPERHKkwVb0j3j_jP.html

  • @bamgamesapps
    @bamgamesapps 3 місяці тому

    👇 SUPPORT THE CHANNEL 👇 Like the video and subscribe to the channel if you enjoyed the content. It helps a lot and will allow us to expand this community that we are creating around Unity. If you have any questions, let me know in the comments! If you would like to suggest the topic for the next video, leave me a comment too! 🦾KEEP LEARNING🦾 ua-cam.com/play/PLjQFtm3o3dPvyUHUJPERHKkwVb0j3j_jP.html

  • @bamgamesapps
    @bamgamesapps 3 місяці тому

    👇 SUPPORT THE CHANNEL 👇 Like the video and subscribe to the channel if you enjoyed the content. It helps a lot and will allow us to expand this community that we are creating around Unity. If you have any questions, let me know in the comments! If you would like to suggest the topic for the next video, leave me a comment too! 🦾KEEP LEARNING🦾 ua-cam.com/play/PLjQFtm3o3dPvyUHUJPERHKkwVb0j3j_jP.html

  • @Corysia
    @Corysia 3 місяці тому

    You could save some code if you use the default value. If the value doesn't exist, it will return the default. counter = PlayerPrefs.GetInt("counter", 0);

    • @bamgamesapps
      @bamgamesapps 3 місяці тому

      Thank you for your comment @Corysia !!! Correct, the default is a good thing in case anything happens when retrieving the value stored. Have a nice day!!🦾

  • @amirhossein_alimirzaei
    @amirhossein_alimirzaei 3 місяці тому

    nice

    • @bamgamesapps
      @bamgamesapps 3 місяці тому

      Thank you so much for your support @amirhossein_alimirzaei !!! Have a nice day 🦾

  • @samcodebreaker
    @samcodebreaker 3 місяці тому

    Thanks once again. Could you please make a video for rewarded ads? And also provide us with the script you are using for the ad.

    • @bamgamesapps
      @bamgamesapps 3 місяці тому

      Thank you so much @samcodebreaker ! Appreciate your comment. I'm planning to publish the rewarded ads video on the 11th of April (next Thursday). I still have to edit the video 🦾 Hope you have a nice week!

  • @yasinsly1366
    @yasinsly1366 3 місяці тому

    that was life saver man !! Thanks for you great video

    • @bamgamesapps
      @bamgamesapps 3 місяці тому

      Thank you so much @yasinsly1366 ! Appreciate your support and I'm happy to know I could help. Wish you the best! 🦾

  • @bamgamesapps
    @bamgamesapps 3 місяці тому

    👇 SUPPORT THE CHANNEL 👇 Like the video and subscribe to the channel if you enjoyed the content. It helps a lot and will allow us to expand this community that we are creating around Unity. If you have any questions, let me know in the comments! If you would like to suggest the topic for the next video, leave me a comment too! 🦾KEEP LEARNING🦾 ua-cam.com/play/PLjQFtm3o3dPvyUHUJPERHKkwVb0j3j_jP.html

  • @bamgamesapps
    @bamgamesapps 3 місяці тому

    👇 SUPPORT THE CHANNEL 👇 Like the video and subscribe to the channel if you enjoyed the content. It helps a lot and will allow us to expand this community that we are creating around Unity. If you have any questions, let me know in the comments! If you would like to suggest the topic for the next video, leave me a comment too! 🦾KEEP LEARNING🦾 ua-cam.com/play/PLjQFtm3o3dPvyUHUJPERHKkwVb0j3j_jP.html

  • @bamgamesapps
    @bamgamesapps 3 місяці тому

    👇 SUPPORT THE CHANNEL 👇 Like the video and subscribe to the channel if you enjoyed the content. It helps a lot and will allow us to expand this community that we are creating around Unity. If you have any questions, let me know in the comments! If you would like to suggest the topic for the next video, leave me a comment too! 🦾KEEP LEARNING🦾 ua-cam.com/play/PLjQFtm3o3dPvyUHUJPERHKkwVb0j3j_jP.html

  • @samcodebreaker
    @samcodebreaker 3 місяці тому

    Thank you so much for this video. Could you please make a video on interstitial and rewarded ads?

    • @bamgamesapps
      @bamgamesapps 3 місяці тому

      Thank you so much @samcodebreaker !!! I've recorded both of them and as soon as I finish editing them, I will publish them. Next Monday interstitial tutorial will be available 100% 🦾

  • @bamgamesapps
    @bamgamesapps 4 місяці тому

    👇 SUPPORT THE CHANNEL 👇 Like the video and subscribe to the channel if you enjoyed the content. It helps a lot and will allow us to expand this community that we are creating around Unity. If you have any questions, let me know in the comments! If you would like to suggest the topic for the next video, leave me a comment too! 🦾KEEP LEARNING🦾 ua-cam.com/play/PLjQFtm3o3dPvyUHUJPERHKkwVb0j3j_jP.html

  • @bamgamesapps
    @bamgamesapps 4 місяці тому

    👇 SUPPORT THE CHANNEL 👇 Don't forget to like the video and subscribe to the channel if you enjoy the content. It helps a lot and will allow us to expand this community that we are creating around Unity. If you have any questions, let me know in the comments! If you would like to suggest the topic for the next video, leave me a comment too! 🦾KEEP LEARNING🦾 ua-cam.com/play/PLjQFtm3o3dPvyUHUJPERHKkwVb0j3j_jP.html

  • @alexanderhunter6034
    @alexanderhunter6034 4 місяці тому

    "Promo sm"

    • @bamgamesapps
      @bamgamesapps 4 місяці тому

      Thank you for you comment @alexanderhunter6034 🦾

  • @bamgamesapps
    @bamgamesapps 4 місяці тому

    👇 SUPPORT THE CHANNEL 👇 Don't forget to like the video and subscribe to the channel if you enjoy the content. It helps a lot and will allow us to expand this community that we are creating around Unity. If you have any questions, let me know in the comments! If you would like to suggest the topic for the next video, leave me a comment too! 🦾KEEP LEARNING🦾 ua-cam.com/play/PLjQFtm3o3dPvyUHUJPERHKkwVb0j3j_jP.html

  • @bamgamesapps
    @bamgamesapps 4 місяці тому

    👇 SUPPORT THE CHANNEL 👇 Don't forget to like the video and subscribe to the channel if you enjoy the content. It helps a lot and will allow us to expand this community that we are creating around Unity. If you have any questions, let me know in the comments! If you would like to suggest the topic for the next video, leave me a comment too! 🦾KEEP LEARNING🦾 ua-cam.com/play/PLjQFtm3o3dPvyUHUJPERHKkwVb0j3j_jP.html

  • @bamgamesapps
    @bamgamesapps 4 місяці тому

    👇 SUPPORT THE CHANNEL 👇 Don't forget to like the video and subscribe to the channel if you enjoy the content. It helps a lot and will allow us to expand this community that we are creating around Unity. If you have any questions, let me know in the comments! If you would like to suggest the topic for the next video, leave me a comment too! 🦾KEEP LEARNING🦾 ua-cam.com/play/PLjQFtm3o3dPvyUHUJPERHKkwVb0j3j_jP.html

  • @bamgamesapps
    @bamgamesapps 4 місяці тому

    👇 SUPPORT THE CHANNEL 👇 Don't forget to like the video and subscribe to the channel if you enjoy the content. It helps a lot and will allow us to expand this community that we are creating around Unity. If you have any questions, let me know in the comments! If you would like to suggest the topic for the next video, leave me a comment too! 🦾KEEP LEARNING🦾 ua-cam.com/play/PLjQFtm3o3dPvyUHUJPERHKkwVb0j3j_jP.html

  • @bamgamesapps
    @bamgamesapps 4 місяці тому

    👇 SUPPORT THE CHANNEL 👇 Don't forget to like the video and subscribe to the channel if you enjoy the content. It helps a lot and will allow us to expand this community that we are creating around Unity. If you have any questions, let me know in the comments! If you would like to suggest the topic for the next video, leave me a comment too! 🦾KEEP LEARNING🦾 ua-cam.com/play/PLjQFtm3o3dPvyUHUJPERHKkwVb0j3j_jP.html

  • @bamgamesapps
    @bamgamesapps 4 місяці тому

    👇 SUPPORT THE CHANNEL 👇 Don't forget to like the video and subscribe to the channel if you enjoy the content. It helps a lot and will allow us to expand this community that we are creating around Unity. If you have any questions, let me know in the comments! If you would like to suggest the topic for the next video, leave me a comment too! 🦾KEEP LEARNING🦾 ua-cam.com/play/PLjQFtm3o3dPvyUHUJPERHKkwVb0j3j_jP.html