Тёмный

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

NikiGame
Подписаться 497
Просмотров 15 тыс.
50% 1

#fpsshooter #touchscreen #unity3d #joystick
In this beginner unity tutorial we will show how to have a Camera Touch Control with Joystick Asset and Panel in fps game
Unity Camera Touch Control are most commonly used in first-person mobile games
-------------------------------------------------------------------------------
Download the FixedTouchField and Scripts (All) (Rar) : www.mediafire....
-------------------------------------------------------------------------------
Asset Store (Joystick Package) : assetstore.uni...
-------------------------------------------------------------------------------
Touch Control system is one of the most important 3D systems in the world of game making, which is fully explained to you in this tutorial.
-------------------------------------------------------------------------------
In this video (Part 2) you will learn how to implement Camera Touch Control with Panel in unity.
-------------------------------------------------------------------------------
In this tutorial, we try to consider all possible parts to make a shooter mobile game in unity3d.
-------------------------------------------------------------------------------
If you like this video, please like, subscribe and comment.
-------------------------------------------------------------------------------
About me : Hello, welcome to my channel. In this channel, I will tell you my experiences and training. I hope I have added to your knowledge.
If you like to support me, please don't forget to like, comment and subscribe.
-------------------------------------------------------------------------------
The biggest channels for learning Unity and i got help : @Brackeys @CodeMonkeyUnity @unity
-------------------------------------------------------------------------------
First Person Movement in 8 Minutes : • First Person Movement ...
Fps Shooter : • First Person Movement ...
Part 2 (this Video) : • Camera Touch Control -...
Part 1 : • Fps Touch Control - Fp...

Опубликовано:

 

12 окт 2023

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 75   
@Aby.X-fg5cg
@Aby.X-fg5cg 3 месяца назад
Thanks Bro I watch About 100 video but You are the Best /''/
@Duspant_Official
@Duspant_Official 5 месяцев назад
You can do it thanks for saving my lot of time hats off you bro
@rein0_o407
@rein0_o407 3 месяца назад
Thank you! You saved me a lot of time by leaving scripts in the description.
@VedantGhyar4512
@VedantGhyar4512 6 месяцев назад
thank 's bro I was serching for such tutorial from a month
@NikiGame-Unity
@NikiGame-Unity 6 месяцев назад
You are welcome♥
@ROCKSMASHER
@ROCKSMASHER День назад
Nice man
@vizowartandcraft
@vizowartandcraft 14 дней назад
HI MY PLAYER IS ABLE TO LOOK HORIZONTALLY BUT NOT VERTICALLY SO CAN YOU HELP ME TO MAKE MY PLAYER LOOK VERTICALLY
@SillentKiller-lw2ei
@SillentKiller-lw2ei 4 месяца назад
There is no vertical movement you cannot look up and down
@gabrielsioson1448
@gabrielsioson1448 2 месяца назад
You forgot to put the PlayerBody in the CameraLook script
@AddonIDE
@AddonIDE 4 месяца назад
兄弟感谢你,终于找到了完美的触摸方法 Translate:Brother, thank you for finding the perfect way to touch.
@sachexperimentvlogs
@sachexperimentvlogs 19 часов назад
When I tun my camera in x axis the whole player body start spinning continuously please help me
@FarazAhmad-q4x
@FarazAhmad-q4x 21 день назад
Thx
@aynsjc
@aynsjc 4 месяца назад
THANK YOU BRO!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!♾
@onlygames2185
@onlygames2185 27 дней назад
You deserve more subscribers..
@shreekantarawatt9360
@shreekantarawatt9360 Месяц назад
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
@-iip220v
@-iip220v 2 месяца назад
Where gravitation?
@jtv3209
@jtv3209 3 месяца назад
Thank You... This Is Good Tutorial
@giann9855
@giann9855 2 месяца назад
you are extremely underrated
@Test-uk1jl
@Test-uk1jl 4 месяца назад
Please make tutorial for switching camera view, like zoom in, and back to default view, with the touch, thanks in advance ❤
@SAOIZ65
@SAOIZ65 10 месяцев назад
Mobile game control videos ate rare in youtube
@NikiGame-Unity
@NikiGame-Unity 10 месяцев назад
I agree with you ♥👌
@Rengrandt
@Rengrandt 7 месяцев назад
public CameraLook _CameraLook; not working... CameraLook CS0246 error
@NikiGame-Unity
@NikiGame-Unity 6 месяцев назад
bro watch video again install unity 2020 upper and send me email and explain your problem with picture♥ sorry about lately messages♥♥
@ysabelbrito115
@ysabelbrito115 Месяц назад
thanks new subscriber 😊😊😊
@vikasmadhukar186
@vikasmadhukar186 8 месяцев назад
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 6 месяцев назад
bro send me email and explain your problem with picture♥ sorry about lately messages♥♥
@PradhyptaMalvin
@PradhyptaMalvin 7 месяцев назад
Thanks a million bro
@NikiGame-Unity
@NikiGame-Unity 6 месяцев назад
i love you ♥ sorry about lately messages♥♥
@user-wc1qn7bl8v
@user-wc1qn7bl8v 10 месяцев назад
Thank you so much 😊
@NikiGame-Unity
@NikiGame-Unity 10 месяцев назад
You're welcome 😊♥
@SAOIZ65
@SAOIZ65 10 месяцев назад
Osm
@NikiGame-Unity
@NikiGame-Unity 10 месяцев назад
Thanks
@camilourielsanchez7869
@camilourielsanchez7869 6 месяцев назад
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 6 месяцев назад
thanks bro for provide the code ♥♥
@bilimingozunden
@bilimingozunden 2 месяца назад
Thanks Bro!!
@user-ig8li5fj2v
@user-ig8li5fj2v 10 месяцев назад
Thanks bro you solved my problem❤❤
@NikiGame-Unity
@NikiGame-Unity 10 месяцев назад
I am glad that your problem is solved ♥♥😍
@Dxvel
@Dxvel 7 месяцев назад
Thank you so much
@NikiGame-Unity
@NikiGame-Unity 6 месяцев назад
i love you ♥ sorry about lately messages♥♥
@user-bt7kc8vz8p
@user-bt7kc8vz8p 3 месяца назад
How can we make touch input field for unity new input system? Pleeeeeassssseeee help!!!!
@artik6614
@artik6614 7 месяцев назад
🤩
@NikiGame-Unity
@NikiGame-Unity 6 месяцев назад
Love You ♥ sorry about lately messages♥♥
@reihanamar26
@reihanamar26 7 месяцев назад
Why my camera is always rotate if i press both joystick and camera screen?
@NikiGame-Unity
@NikiGame-Unity 6 месяцев назад
my bro please watch video again and download the script in bio♥ sorry about lately messages♥♥
@MADEININDIAGAMES
@MADEININDIAGAMES 6 месяцев назад
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 6 месяцев назад
bro , the download links are ok , please try again ♥
@SAOIZ65
@SAOIZ65 10 месяцев назад
I am waiting for your video
@NikiGame-Unity
@NikiGame-Unity 10 месяцев назад
Thank you for waiting ♥
@Alt_F4_bd
@Alt_F4_bd 7 месяцев назад
make a video for making a drivable car like gta,.............. love from bangladesh
@NikiGame-Unity
@NikiGame-Unity 6 месяцев назад
of course♥ sorry about lately messages♥♥
@ILIKEPC
@ILIKEPC 5 месяцев назад
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 4 месяца назад
Make sure that the touch input area is not overlaying the joystick area this might be causing the glitchy effect...
@KareemHalboni
@KareemHalboni 5 месяцев назад
Bro the player move script have error
@bananolfo
@bananolfo 4 месяца назад
Baixa o do link e coloca lá
@cacavoladora2.014
@cacavoladora2.014 6 месяцев назад
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 6 месяцев назад
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 6 месяцев назад
its normal, in real phone all be ok
@UnityVista
@UnityVista 8 месяцев назад
i want for TPS so what modificaction i will need to do ? please reply
@NikiGame-Unity
@NikiGame-Unity 8 месяцев назад
I will make this tutorial so please waiting♥
@K.Y_Gamerz
@K.Y_Gamerz 6 месяцев назад
How i use this on terrain ?
@NikiGame-Unity
@NikiGame-Unity 6 месяцев назад
watch this : ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-KWtb1QPWD-s.html
@Not_7x99
@Not_7x99 8 месяцев назад
can you make a tutorial of making tps camera touch please
@NikiGame-Unity
@NikiGame-Unity 6 месяцев назад
i do my beast ♥ sorry about lately messages♥♥
@life4game592
@life4game592 7 месяцев назад
bro FixedTouchFiled not add to touch screen compiler error
@NikiGame-Unity
@NikiGame-Unity 6 месяцев назад
bro send me email and explain your problem with picture♥ sorry about lately messages♥♥
@SuperM0rio
@SuperM0rio 6 месяцев назад
Y look axis is not working, what can I do?
@NikiGame-Unity
@NikiGame-Unity 6 месяцев назад
bro , please watch video again and download the code from description and sorry about lately messages♥♥
@SuperM0rio
@SuperM0rio 6 месяцев назад
@@NikiGame-Unity I solved the problem thank you
@life4game592
@life4game592 7 месяцев назад
Bro its showing No MonoBehaviour scripts in the file
@NikiGame-Unity
@NikiGame-Unity 6 месяцев назад
bro send me email and explain your problem with picture♥ sorry about lately messages♥♥
@hanestv6911
@hanestv6911 6 месяцев назад
bro thirdperson pls
@NikiGame-Unity
@NikiGame-Unity 6 месяцев назад
Already uploaded : ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-pD02QlBxa0I.html
@neldead_inside
@neldead_inside 6 месяцев назад
dude, can you write script in comments, please?
@NikiGame-Unity
@NikiGame-Unity 6 месяцев назад
Bro, please check the description. Check the download link.
Далее
They made a game about philosophy...
23:19
Просмотров 405 тыс.
Get 10 Mega Boxes OR 60 Starr Drops!!
01:39
Просмотров 14 млн
I Built a Transparent Boomerang (it's lethal)
13:10
Просмотров 3,6 млн
PORT MODELS TO SFM AND BLENDER QUICKLY!!!
3:20
Просмотров 24 тыс.
I Made My First Game in Godot in 3 Weeks...
26:21
Просмотров 303 тыс.
SNIPERS: A Nightmare for Developers and Players
31:16
The Clever Way to Count Tanks - Numberphile
16:45
Просмотров 940 тыс.
Dear Game Developers, Stop Messing This Up!
22:19
Просмотров 704 тыс.
I Tried To Beat Minecraft Backwards
18:53
Просмотров 1,2 млн
FPS Touch Controls - UNITY 2021 Tutorial
14:12
Просмотров 65 тыс.