Unreal Engine: Building a Login/Authentication System

Sdílet
Vložit
  • čas přidán 12. 11. 2022
  • 0:13 - Demo
    0:33 - Download Assets
    0:43 - Installing the Firebase Blueprint Plugin
    1:00 - Firebase and plugin setup
    4:11 - Creating the UI Files
    16:18 - Defining the Login logic
    16:34 - Create Account Logic
    20:20 - Logging out
    22:40 - Signing In
    24:25 - Resetting Account Password
    26:55 - Canceling the action
    Available for Unreal Engine 4.27, 5.0, 5.1, 5.2
    Hello, in this video, I will show you how to create a Login /Authentication system in Unreal Engine using Firebase and the Firebase Blueprint Plugin Library.
    Assets Download URL:
    codeible.com/coursefiles/unre...
    Plugin URL:
    www.unrealengine.com/marketpl...
    Setup Video:
    • Unreal Engine: Firebas...
    Plugin Playlist:
    • Unreal Engine: Firebas...
    If you find this video helpful, please Like, Share, and Subscribe to support the channel!
    Codeible App:
    play.google.com/console/u/0/d...
    Codeible website:
    codeible.com/
    Loop Clicker:
    play.google.com/store/apps/de...
    Loop Clicker Website:
    loopclicker.web.app/
    Support Codeible on Patreon!
    / codeible
    Reddit:
    / codeible
    Follow on Pinterest:
    / codeible
    Follow on Instagram:
    / codeibleig
    Follow on Twitter:
    intent/follow?ori...

Komentáře • 15

  • @crazyguy7585
    @crazyguy7585 Před rokem +3

    wow love it please make more videos for unreal engine

  • @kirito9514
    @kirito9514 Před rokem +1

    you are the goattt, thanks alot you saved my proj amazing video keep it up king.

  • @slcsb116
    @slcsb116 Před rokem +2

    Greate... keep it up

  • @c.eliakusche1929
    @c.eliakusche1929 Před rokem

    Nice Video! Does it work also on mobile?

  • @TR_Mount
    @TR_Mount Před rokem +2

    HI! it will work if I do registration for online games on windows???

    • @Codeible
      @Codeible  Před rokem +1

      Yes

    • @TR_Mount
      @TR_Mount Před rokem +1

      @@Codeible thanks

    • @TR_Mount
      @TR_Mount Před rokem

      @@Codeible i want to ask, when i create database on site (select apps), i should to choose android selected platform or smth diff?

    • @Codeible
      @Codeible  Před rokem +1

      @@TR_Mount Hi, if you are using Windows create a Android app for the Google-Services,json file.
      If you are using a Mac, create an iOS app and get the googleservices-info.plist file

  • @user-vs3xu5gj5i
    @user-vs3xu5gj5i Před rokem +1

    Can I prevent duplicate logins?
    If I log in with one account, I want to make sure that I can't log in with this account until the account is logged out.

    • @Codeible
      @Codeible  Před rokem +2

      Hi Firebase Authentication does not allow that automatically.
      The way to do it is when a user logs in, it will update their state in Firestore or Realtime Database.
      The data will be their UID > LoggedIn: true/false
      Then you will need to read that data when the user logs in on another device.
      If their state is logged in, then log them out or do not let them access the app until they log out of the other devices.

  • @adam4designss
    @adam4designss Před rokem

    how i can add id number to this system

    • @Codeible
      @Codeible  Před rokem +1

      Hi, you cannot with Firebase.
      Is your id number connected with a server? You might need to do HTTP request and login via OAuth.

    • @adam4designss
      @adam4designss Před rokem +1

      @@Codeible THANK YOU