Camera Touch Control - Camera Mobile Game 2023 - Unity Tutorial -Fps Shooter-(Joystick Asset)-Part 2

แชร์
ฝัง
  • เผยแพร่เมื่อ 29 พ.ย. 2024

ความคิดเห็น • 86

  • @Duspant_Official
    @Duspant_Official 8 หลายเดือนก่อน +4

    You can do it thanks for saving my lot of time hats off you bro

  • @buyers_pick
    @buyers_pick 10 หลายเดือนก่อน +5

    thank 's bro I was serching for such tutorial from a month

  • @rein0_o407
    @rein0_o407 6 หลายเดือนก่อน +1

    Thank you! You saved me a lot of time by leaving scripts in the description.

  • @AddonIDE
    @AddonIDE 8 หลายเดือนก่อน

    兄弟感谢你,终于找到了完美的触摸方法
    Translate:Brother, thank you for finding the perfect way to touch.

  • @Aby.X-fg5cg
    @Aby.X-fg5cg 6 หลายเดือนก่อน +2

    Thanks Bro I watch About 100 video but You are the Best /''/

  • @camilourielsanchez7869
    @camilourielsanchez7869 10 หลายเดือนก่อน +3

    using System.Collections;
    using System.Collections.Generic;
    using UnityEngine;
    using UnityEngine.EventSystems;
    public class Touchpadfixed : MonoBehaviour, IPointerDownHandler, IPointerUpHandler
    {
    public void OnPointerDown(PointerEventData eventData)
    {
    Pressed = true;
    pointerId = eventData.pointerId;
    PointerOld = eventData.position;
    }
    public void OnPointerUp(PointerEventData eventData)
    {
    Pressed = false;
    }
    [HideInInspector]
    public Vector2 TouchDist;
    [HideInInspector]
    public Vector2 PointerOld;
    [HideInInspector]
    protected int pointerId;
    [HideInInspector]
    public bool Pressed;
    void Start()
    {

    }
    void Update()
    {
    if (Pressed)
    {
    if(pointerId >= 0 && pointerId < Input.touches.Length)
    {
    TouchDist = Input.touches[pointerId].position - PointerOld;
    PointerOld = Input.touches[pointerId].position;
    }
    else
    {
    TouchDist = new Vector2(Input.mousePosition.x, Input.mousePosition.y) - PointerOld;
    PointerOld = Input.mousePosition;
    }
    }
    else
    {
    TouchDist = new Vector2();
    }
    }
    }

    • @NikiGame-Unity
      @NikiGame-Unity  10 หลายเดือนก่อน +1

      thanks bro for provide the code ♥♥

    • @fakez742
      @fakez742 29 วันที่ผ่านมา

      thanks man

  • @PrinceMastwal-oh2ql
    @PrinceMastwal-oh2ql หลายเดือนก่อน +1

    Thankyou So Much❤❤❤❤

  • @aynsjc
    @aynsjc 8 หลายเดือนก่อน +2

    THANK YOU BRO!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!♾

  • @NUZASARY
    @NUZASARY หลายเดือนก่อน

    nice bro you are my herooooooooooooooooo................

  • @aerythox8382
    @aerythox8382 หลายเดือนก่อน

    This is incredibly useful and the codework is simple, is there any way you can make a guide about applying footsteps that is compatible with your code?

  • @SAOIZ65
    @SAOIZ65 ปีที่แล้ว

    Osm

  • @ROCKSMASHER
    @ROCKSMASHER 3 หลายเดือนก่อน +1

    Nice man

  • @onlygames2185
    @onlygames2185 4 หลายเดือนก่อน

    You deserve more subscribers..

  • @artik6614
    @artik6614 11 หลายเดือนก่อน

    🤩

    • @NikiGame-Unity
      @NikiGame-Unity  10 หลายเดือนก่อน

      Love You ♥
      sorry about lately messages♥♥

  • @giann9855
    @giann9855 5 หลายเดือนก่อน

    you are extremely underrated

  • @GhassanDev519
    @GhassanDev519 18 วันที่ผ่านมา

    Can't add script component 'TouchController' because the script class cannot be found. Make sure that there are no compile errors and that the file name and class name match.
    this is shown by unity

  • @jtv3209
    @jtv3209 7 หลายเดือนก่อน

    Thank You... This Is Good Tutorial

  • @Test-uk1jl
    @Test-uk1jl 8 หลายเดือนก่อน

    Please make tutorial for switching camera view, like zoom in, and back to default view, with the touch, thanks in advance ❤

  • @ysabelbrito115
    @ysabelbrito115 4 หลายเดือนก่อน

    thanks new subscriber 😊😊😊

  • @PradhyptaMalvin
    @PradhyptaMalvin 11 หลายเดือนก่อน +1

    Thanks a million bro

    • @NikiGame-Unity
      @NikiGame-Unity  10 หลายเดือนก่อน

      i love you ♥
      sorry about lately messages♥♥

  • @vikasmadhukar186
    @vikasmadhukar186 11 หลายเดือนก่อน +2

    hello i am facing a problem in camera rotation it is not rotating in y-axis it is only rotating x-axis when ever i move camera in yaxis during play it start shaking just like it wants to move but unable to move kindly help me plz

    • @NikiGame-Unity
      @NikiGame-Unity  10 หลายเดือนก่อน +1

      bro send me email and explain your problem with picture♥
      sorry about lately messages♥♥

  • @SAOIZ65
    @SAOIZ65 ปีที่แล้ว

    I am waiting for your video

  • @Xiao-t8x
    @Xiao-t8x ปีที่แล้ว +1

    Thank you so much 😊

  • @Rengrandt
    @Rengrandt 11 หลายเดือนก่อน +2

    public CameraLook _CameraLook; not working...
    CameraLook CS0246 error

    • @NikiGame-Unity
      @NikiGame-Unity  10 หลายเดือนก่อน +1

      bro watch video again install unity 2020 upper and send me email and explain your problem with picture♥
      sorry about lately messages♥♥

  • @bilimingozunden
    @bilimingozunden 6 หลายเดือนก่อน

    Thanks Bro!!

  • @Chill_Beats_Corner-m5d
    @Chill_Beats_Corner-m5d 4 หลายเดือนก่อน

    Thx

  • @shreekantarawatt9360
    @shreekantarawatt9360 5 หลายเดือนก่อน

    Hello! Great But I'm Facing Problem that the camera is moving but with refrance to mouse pointer even if i don't click and move like you are doing. So what can i do Now

  • @MsSahadi
    @MsSahadi ปีที่แล้ว

    Thanks bro you solved my problem❤❤

    • @NikiGame-Unity
      @NikiGame-Unity  ปีที่แล้ว

      I am glad that your problem is solved ♥♥😍

  • @MADEININDIAGAMES
    @MADEININDIAGAMES 9 หลายเดือนก่อน

    thank you brother. please also WRITE the scripts in comment section (if you want to) bcoz your downloadable files are not opening. It means a lot bro. thanks for your help.

    • @NikiGame-Unity
      @NikiGame-Unity  9 หลายเดือนก่อน +1

      bro , the download links are ok , please try again ♥

  • @Dxvel
    @Dxvel 11 หลายเดือนก่อน

    Thank you so much

    • @NikiGame-Unity
      @NikiGame-Unity  10 หลายเดือนก่อน

      i love you ♥
      sorry about lately messages♥♥

  • @sachexperimentvlogs
    @sachexperimentvlogs 3 หลายเดือนก่อน

    When I tun my camera in x axis the whole player body start spinning continuously please help me

  • @SAOIZ65
    @SAOIZ65 ปีที่แล้ว +1

    Mobile game control videos ate rare in youtube

  • @reihanamar26
    @reihanamar26 10 หลายเดือนก่อน +2

    Why my camera is always rotate if i press both joystick and camera screen?

    • @NikiGame-Unity
      @NikiGame-Unity  10 หลายเดือนก่อน

      my bro please watch video again and download the script in bio♥
      sorry about lately messages♥♥

    • @sachexperimentvlogs
      @sachexperimentvlogs 3 หลายเดือนก่อน +1

      Same

  • @AnujChouhan-o7b
    @AnujChouhan-o7b 6 หลายเดือนก่อน

    How can we make touch input field for unity new input system? Pleeeeeassssseeee help!!!!

  • @-iip220v
    @-iip220v 5 หลายเดือนก่อน +1

    Where gravitation?

  • @Alt_F4_bd
    @Alt_F4_bd 10 หลายเดือนก่อน

    make a video for making a drivable car like gta,.............. love from bangladesh

    • @NikiGame-Unity
      @NikiGame-Unity  10 หลายเดือนก่อน +1

      of course♥
      sorry about lately messages♥♥

  • @K.Y_Gamerz
    @K.Y_Gamerz 10 หลายเดือนก่อน +1

    How i use this on terrain ?

    • @NikiGame-Unity
      @NikiGame-Unity  10 หลายเดือนก่อน

      watch this : th-cam.com/video/KWtb1QPWD-s/w-d-xo.html

  • @30fpsprohere
    @30fpsprohere ปีที่แล้ว

    i want for TPS so what modificaction i will need to do ? please reply

    • @NikiGame-Unity
      @NikiGame-Unity  ปีที่แล้ว

      I will make this tutorial so please waiting♥

  • @cacavoladora2.014
    @cacavoladora2.014 10 หลายเดือนก่อน

    Hrmno tengo un problema, cuando lo testeo con el unity remote desde mí celu se ve tdo pixelado como cn mala calidad y anda lag que puedo hacer?

    • @NikiGame-Unity
      @NikiGame-Unity  9 หลายเดือนก่อน

      hermano, tienes que ver un video sobre cómo optimizar la calidad en youtube y configurar este código según tu sentido.
      Application.targetFrameRate = 60f;

    • @neldead_inside
      @neldead_inside 9 หลายเดือนก่อน

      its normal, in real phone all be ok

  • @ILIKEPC
    @ILIKEPC 8 หลายเดือนก่อน

    bro,
    using both joystick and screen is making a glitchy effect
    i have tested it multiple times and my result comes out that by giving 2 touch inputs this glitch is triggered
    1 input inside the area designated for moving screen
    and another input outside the area (doesnt matter if its joystick or something else)
    i need the solution , i have been doing non stop reseach from 3 days

    • @aynsjc
      @aynsjc 8 หลายเดือนก่อน

      Make sure that the touch input area is not overlaying the joystick area this might be causing the glitchy effect...

  • @Not_7x99
    @Not_7x99 ปีที่แล้ว

    can you make a tutorial of making tps camera touch please

    • @NikiGame-Unity
      @NikiGame-Unity  10 หลายเดือนก่อน

      i do my beast ♥
      sorry about lately messages♥♥

  • @SillentKiller-lw2ei
    @SillentKiller-lw2ei 8 หลายเดือนก่อน +5

    There is no vertical movement you cannot look up and down

    • @gabrielsioson1448
      @gabrielsioson1448 6 หลายเดือนก่อน

      You forgot to put the PlayerBody in the CameraLook script

  • @BadApple-um7vb
    @BadApple-um7vb 2 หลายเดือนก่อน

    how to make this become third person

  • @life4game592
    @life4game592 11 หลายเดือนก่อน

    bro FixedTouchFiled not add to touch screen compiler error

    • @NikiGame-Unity
      @NikiGame-Unity  10 หลายเดือนก่อน

      bro send me email and explain your problem with picture♥
      sorry about lately messages♥♥

  • @SuperM0rio
    @SuperM0rio 10 หลายเดือนก่อน

    Y look axis is not working, what can I do?

    • @NikiGame-Unity
      @NikiGame-Unity  10 หลายเดือนก่อน

      bro , please watch video again and download the code from description
      and sorry about lately messages♥♥

    • @SuperM0rio
      @SuperM0rio 10 หลายเดือนก่อน

      @@NikiGame-Unity I solved the problem thank you

    • @MINIDROIDTECH
      @MINIDROIDTECH 2 หลายเดือนก่อน

      ​@@SuperM0rio hello how did you solve that problem

  • @life4game592
    @life4game592 11 หลายเดือนก่อน

    Bro its showing No MonoBehaviour scripts in the file

    • @NikiGame-Unity
      @NikiGame-Unity  10 หลายเดือนก่อน

      bro send me email and explain your problem with picture♥
      sorry about lately messages♥♥

  • @RISHABH78k
    @RISHABH78k 2 หลายเดือนก่อน

    Hey my controller is not working

    • @SigmaStigman
      @SigmaStigman หลายเดือนก่อน

      The same

    • @user12049-h
      @user12049-h หลายเดือนก่อน

      You must have failed in some step, you forgot something, because it worked perfectly for me until today.

  • @vizowartandcraft
    @vizowartandcraft 3 หลายเดือนก่อน +2

    HI MY PLAYER IS ABLE TO LOOK HORIZONTALLY BUT NOT VERTICALLY SO CAN YOU HELP ME TO MAKE MY PLAYER LOOK VERTICALLY

  • @KareemHalboni
    @KareemHalboni 9 หลายเดือนก่อน +1

    Bro the player move script have error

    • @bananolfo
      @bananolfo 7 หลายเดือนก่อน

      Baixa o do link e coloca lá

  • @hanestv6911
    @hanestv6911 10 หลายเดือนก่อน

    bro thirdperson pls

    • @NikiGame-Unity
      @NikiGame-Unity  10 หลายเดือนก่อน

      Already uploaded : th-cam.com/video/pD02QlBxa0I/w-d-xo.html

  • @neldead_inside
    @neldead_inside 9 หลายเดือนก่อน

    dude, can you write script in comments, please?

    • @NikiGame-Unity
      @NikiGame-Unity  9 หลายเดือนก่อน

      Bro, please check the description.
      Check the download link.