Пікірлер
@cockatoo6912
@cockatoo6912 8 күн бұрын
Welcome back
@sunnybeniwal9313
@sunnybeniwal9313 18 күн бұрын
31:02
@sunnybeniwal9313
@sunnybeniwal9313 20 күн бұрын
Nice🌙
@PhysicsDeveloper
@PhysicsDeveloper 16 күн бұрын
Thanks! 😊
@sunnybeniwal9313
@sunnybeniwal9313 21 күн бұрын
Superb bro🥰👌
@PhysicsDeveloper
@PhysicsDeveloper 16 күн бұрын
Thanks bro!
@sunnybeniwal9313
@sunnybeniwal9313 24 күн бұрын
Bro can i use your mesh2 texture for my project? It’s copyrighted?
@PhysicsDeveloper
@PhysicsDeveloper 24 күн бұрын
Bro, Everything is FREE in my channel.
@YGDEV69
@YGDEV69 2 ай бұрын
Make third person shooter using unity's third person starter asset
@PhysicsDeveloper
@PhysicsDeveloper 2 ай бұрын
Of course
@tech5t
@tech5t 2 ай бұрын
very Nice
@PhysicsDeveloper
@PhysicsDeveloper 2 ай бұрын
Thank you
@tech5t
@tech5t 2 ай бұрын
vai lifeline 0 hone ke bat vi game over nahi ho raha he erro arahe app ka full corse kar raha hu maza arahe
@PhysicsDeveloper
@PhysicsDeveloper 2 ай бұрын
But wo tutorial abhi stopped kar diya hai
@usercontent2112
@usercontent2112 2 ай бұрын
Thank you so much. Very valuabe tutorial!
@PhysicsDeveloper
@PhysicsDeveloper 2 ай бұрын
Glad it was helpful!
@Zeck-Anime
@Zeck-Anime 2 ай бұрын
ei men pode manda o projeto eu não entendo oque voce fala
@PhysicsDeveloper
@PhysicsDeveloper 2 ай бұрын
Eu vou tentar. entre em contato pelo instagram. instagram.com/physicsdeveloper?igsh=ZGUzMzM3NWJiOQ==
@usercontent2112
@usercontent2112 2 ай бұрын
@Neguinho_Nerd você precisa aprender inglês, men
@Zeck-Anime
@Zeck-Anime 2 ай бұрын
@@usercontent2112 eu eu consigo ler ,mas escutar ainda é mais ou menos
@abharanisaha7396
@abharanisaha7396 2 ай бұрын
Bhaiya Mera sab kuch thike ha bus Mera character ko 2m k height par rakha parta ha taki ooo jump kar sake or aapka jese red se green hota ha oo color Mera sirf red rehata ha kya karoo
@PhysicsDeveloper
@PhysicsDeveloper 2 ай бұрын
instagram.com/physicsdeveloper?igsh=ZGUzMzM3NWJiOQ== contact me, I will fix it tomorrow in DC
@ytgbh
@ytgbh 3 ай бұрын
bhai pls help
@PhysicsDeveloper
@PhysicsDeveloper 3 ай бұрын
Ekbar mera script use kar lena(link in description) Fir mujse batana
@ytgbh
@ytgbh 3 ай бұрын
using System.Collections; using System.Collections.Generic; using UnityEngine; public class playercontroller : MonoBehaviour { CharacterController controller; Camera camera; playerinput playerinput; [Header("Player Value____________________________________________")] public float walkspeed = 3; public float runspeed = 9; public float targetSpeed; //public float playerspeed =3; public float jumpHeight = 2.5f; public float gravity = 9.8f; public float velocity; [Header("Ground Checker_________________________________________________")] public float GroundedOffset = .77f; public float groundCheckerRadious = .28f; public LayerMask GroundLayers; [Header("Condition_________________________________________________")] public bool Grounded; public bool isJump = false; public bool isMouseLock = true; [Header("Player Smooth Turn___________________________________________")] public float SmoothTurnTime = .1f; float turnSmoothVelocity; void Start() { controller = GetComponent<CharacterController>(); camera = FindObjectOfType<Camera>(); playerinput = GetComponent<playerinput>(); if (isMouseLock) Cursor.lockState = CursorLockMode.Locked; } void Update() { PlayerMove(); GroundedCheck(); PlayerJumpAndGravity(); } void PlayerMove() { // move input from physical keys float Horizontal = playerinput.horizontal; float Vertical = playerinput.vertical; // player move speed control if (playerinput.IsIdle) targetSpeed = 0; if (playerinput.IsWalk) targetSpeed = walkspeed; if (playerinput.IsRun) targetSpeed = runspeed; Vector3 direction = new Vector3(Horizontal, 0, Vertical).normalized; if (direction.magnitude >= 0.01f) { // this for roation according to camera float targetAngle = Mathf.Atan2(direction.x, direction.z) * Mathf.Rad2Deg + camera.transform.eulerAngles.y; float angle = Mathf.SmoothDampAngle(transform.eulerAngles.y, targetAngle, ref turnSmoothVelocity, SmoothTurnTime); transform.rotation = Quaternion.Euler(0, angle, 0); } // this for movement float moveTargetAngle = Mathf.Atan2(direction.x, direction.z) * Mathf.Rad2Deg + camera.transform.eulerAngles.y; Vector3 moveDir = Quaternion.Euler(0, moveTargetAngle, 0) * Vector3.forward; controller.Move(moveDir.normalized * (targetSpeed * Time.deltaTime) + new Vector3(0, velocity, 0) * Time.deltaTime); } void GroundedCheck() { Vector3 spherePosition = new Vector3(transform.position.x, transform.position.y - GroundedOffset, transform.position.z); Grounded = Physics.CheckSphere(spherePosition, groundCheckerRadious, GroundLayers, QueryTriggerInteraction.Ignore); } void PlayerJumpAndGravity() { if (Grounded) { if (playerinput.JumpPressed) { velocity += jumpHeight * 2; isJump = true; } if (velocity < 0) { velocity = 0; } } else { velocity += -gravity * Time.deltaTime; } if (velocity >= .1f && !Grounded) isJump = true; else isJump = false; } void OnDrawGizmosSelected() { Color transparentGreen = new Color(.0f, 1.0f, .0f, .35f); Color transparentRed = new Color(1.0f, .0f, .0f, .35f); if (Grounded) Gizmos.color = transparentGreen; else Gizmos.color = transparentRed; Gizmos.DrawSphere(new Vector3(transform.position.x, transform.position.y - GroundedOffset, transform.position.z), groundCheckerRadious); } } XXXXXXXXXXXXXXXXXXSTOOOOOPXXXXXXXXXXXXXXXXXXXXXXXXXXXXX using System.Collections; using System.Collections.Generic; using UnityEngine; public class playerinput : MonoBehaviour { public float horizontal; public float vertical; public Vector2 move; public bool IsIdle; public bool IsWalk; public bool IsRun; public bool FirePressed = false; public bool JumpPressed =false; public bool ReloadPressed =false; void Start() { horizontal = vertical =0; move = new Vector2(0,0); IsIdle=true; IsWalk=IsRun=FirePressed=JumpPressed=ReloadPressed=false; } void Update() { JumpInput(); FireInput(); HorizontalAndVerticalMove(); } void HorizontalAndVerticalMove() { horizontal=Input.GetAxis("Horizontal"); vertical=Input.GetAxis("Vertical"); move=new Vector2(horizontal,vertical); PlayerMoveState(); } void PlayerMoveState() { if(move!=Vector2.zero) { if(Input.GetKey(KeyCode.LeftShift)) { IsRun=true; IsIdle=IsWalk=false; } else { IsWalk=true; IsRun=IsIdle=false; } } else { IsIdle=true; IsRun=IsWalk=false; } } void JumpInput() { if(Input.GetKeyDown(KeyCode.Space)) { JumpPressed=true; } else { JumpPressed=false; } } void FireInput() { if(Input.GetButton("Fire1") ) FirePressed=true; else FirePressed=false; } } Bhai mera code to thik ha lekin transparentgreen color nhi a raha a terrain ko ground ka tag dyia hoo fir bhi transparent red a raha ha orr velocity ka value 0 to - infinity ja raha haa plsss helppppppppppppppp😭😭😭😭😭😭
@djsb-o2n
@djsb-o2n 3 ай бұрын
Ha view low dekh k is series ko rok mat ak din yaa channel no. 1 hoga❤
@PhysicsDeveloper
@PhysicsDeveloper 3 ай бұрын
Thank you bro
@abharanisaha7396
@abharanisaha7396 3 ай бұрын
Bhaiya please don't stop this course im just 19year old im making my own open world game so i need like this videos
@PhysicsDeveloper
@PhysicsDeveloper 3 ай бұрын
Welcome bro
@ANDROIDGAME17
@ANDROIDGAME17 3 ай бұрын
Nice
@PhysicsDeveloper
@PhysicsDeveloper 3 ай бұрын
Thank you
@Falcondev1243
@Falcondev1243 4 ай бұрын
Link
@PhysicsDeveloper
@PhysicsDeveloper 4 ай бұрын
abhi puri tarah se huwa nhi hai
@Fahadalikhan00
@Fahadalikhan00 4 ай бұрын
Hello bhai nice video
@PhysicsDeveloper
@PhysicsDeveloper 4 ай бұрын
thank you bro
@NitinKumar-es1mo
@NitinKumar-es1mo 4 ай бұрын
Bro tutorial banao😊
@PhysicsDeveloper
@PhysicsDeveloper 4 ай бұрын
ok bro
@GroootGamer
@GroootGamer 4 ай бұрын
Bro i am a also game developer can we work together Give me your contact details
@PhysicsDeveloper
@PhysicsDeveloper 4 ай бұрын
instagram.com/physicsdeveloper/
@BadApple-um7vb
@BadApple-um7vb 4 ай бұрын
Sir can you help me? My mouse delta not working
@PhysicsDeveloper
@PhysicsDeveloper 4 ай бұрын
Can you explain me some details. Like what you are doing and what exactly you should do. To understand about the problem.
@mr.akash_gamers
@mr.akash_gamers 4 ай бұрын
I placed the bets properly in my game But in admob all settings are fine But test ads work and real ads don't work.
@PhysicsDeveloper
@PhysicsDeveloper 4 ай бұрын
I will make a new tutorial properly, where we covered all thing. This video is so old .
@omkali7212
@omkali7212 5 ай бұрын
Nice bro thanks for helping
@PhysicsDeveloper
@PhysicsDeveloper 4 ай бұрын
Your welcome
@AshwinSKumar
@AshwinSKumar 5 ай бұрын
Does this still work?
@PhysicsDeveloper
@PhysicsDeveloper 4 ай бұрын
Yes
@AshwinSKumar
@AshwinSKumar 4 ай бұрын
@@PhysicsDeveloper great
@PhysicsDeveloper
@PhysicsDeveloper 2 ай бұрын
thanks
@AshwinSKumar
@AshwinSKumar 2 ай бұрын
@@PhysicsDeveloper no problem
@HemantPatel70
@HemantPatel70 5 ай бұрын
Android phones me Player ko left swipe and right swipe kar ke kese move kare
@PhysicsDeveloper
@PhysicsDeveloper 5 ай бұрын
You can add button system or swipe system using touce input
@sswt3796
@sswt3796 5 ай бұрын
bhaai.. ye to TATTI hai
@PhysicsDeveloper
@PhysicsDeveloper 2 ай бұрын
yes, no doubt
@aakorative3896
@aakorative3896 5 ай бұрын
Nice job! Excited to see more dev logs.
@PhysicsDeveloper
@PhysicsDeveloper 5 ай бұрын
i will try to make other copy game ,
@aakorative3896
@aakorative3896 5 ай бұрын
@@PhysicsDeveloper That is a good idea but i think you should pick one game and focus on that for while. That way you make a playable game and release it.
@PhysicsDeveloper
@PhysicsDeveloper 5 ай бұрын
Well
@huh2253
@huh2253 5 ай бұрын
bro this aint far cry this shit is cry from afar
@aakorative3896
@aakorative3896 5 ай бұрын
rude
@princebali9838
@princebali9838 5 ай бұрын
@@aakorative3896 he is not rude he is telling the truth
@PhysicsDeveloper
@PhysicsDeveloper 5 ай бұрын
i will try to better
@LmaoSkyWalker
@LmaoSkyWalker 5 ай бұрын
lmaoooo
@dhruvop6t92
@dhruvop6t92 5 ай бұрын
nice bro !! excited to see full game .
@PhysicsDeveloper
@PhysicsDeveloper 5 ай бұрын
Very soon!
@justlaugh2746
@justlaugh2746 5 ай бұрын
whats your pc specs ?
@PhysicsDeveloper
@PhysicsDeveloper 5 ай бұрын
Its very low configuration , so sometimes it hang
@GIGADEV690
@GIGADEV690 6 ай бұрын
Nice!!!!
@PhysicsDeveloper
@PhysicsDeveloper 6 ай бұрын
Thank you! Cheers!
@EnergyEclipseGaming
@EnergyEclipseGaming 6 ай бұрын
wow... amazing content....
@PhysicsDeveloper
@PhysicsDeveloper 6 ай бұрын
Thank you so much 😀
@princebali9838
@princebali9838 6 ай бұрын
Where is quality?
@PhysicsDeveloper
@PhysicsDeveloper 6 ай бұрын
Low bagdet game vai 😀😅
@princebali9838
@princebali9838 6 ай бұрын
@@PhysicsDeveloper then please don't say it is AAA you are making fun of indian devlopers
@PacifistJACK
@PacifistJACK 5 ай бұрын
@@princebali9838 tu devlop kar ke dikha iska 10%. Bro ye akele banya ha, Accha PC accha budget chiye accha game banane ke liye. He not making fun of anyone.
@princebali9838
@princebali9838 5 ай бұрын
@@PacifistJACK i am actually developing, you know what i learnt game development on a laptop which didn't even have a graphics card. I know how much it takes. All it takes is patience to develop a good game. My game is in early development and i am not claiming anything like it is AAA or anything. I am developing for a mobile and i am taking my time and my budget is also very low. So please don't tell me what is takes or not
@aakorative3896
@aakorative3896 5 ай бұрын
@@princebali9838 Then you should know the effort he put into is appreciable and an artist should always encourage other artists.
@hustlersdomain
@hustlersdomain 6 ай бұрын
learn english.
@PhysicsDeveloper
@PhysicsDeveloper 6 ай бұрын
Thank you, i will try to better.
@FalconGamz
@FalconGamz 6 ай бұрын
amazing! good to see indian indie games
@PhysicsDeveloper
@PhysicsDeveloper 6 ай бұрын
Thank you bro
@PRATHAM_TALUKDAR
@PRATHAM_TALUKDAR 5 ай бұрын
I am also a indian indie game dev
@satishkumarrawat8714
@satishkumarrawat8714 6 ай бұрын
Very Nice Brother
@PhysicsDeveloper
@PhysicsDeveloper 6 ай бұрын
Thank you, lots of
@brightersofficial9315
@brightersofficial9315 6 ай бұрын
Hy bro can u help me
@PhysicsDeveloper
@PhysicsDeveloper 6 ай бұрын
How can i help you ?
@brightersofficial9315
@brightersofficial9315 6 ай бұрын
Stuck in a problem in a project do u use any social?
@PhysicsDeveloper
@PhysicsDeveloper 6 ай бұрын
Ok i will give you .
@PhysicsDeveloper
@PhysicsDeveloper 6 ай бұрын
m.facebook.com/profile.php?id=100066750184356
@brightersofficial9315
@brightersofficial9315 6 ай бұрын
@@PhysicsDeveloper bro I don't use fb do u use discord Instragram or what's app
@treestudiosuniverse
@treestudiosuniverse 6 ай бұрын
let colab bro
@PhysicsDeveloper
@PhysicsDeveloper 6 ай бұрын
How it posible ?
@treestudiosuniverse
@treestudiosuniverse 6 ай бұрын
@@PhysicsDeveloper u are a game developer , i am game developer , so why not possible
@treestudiosuniverse
@treestudiosuniverse 6 ай бұрын
me aur app milke live podocast karte hai , game dev related
@PhysicsDeveloper
@PhysicsDeveloper 6 ай бұрын
Abhi situation bohut kharab hai , bad me soch na padega.
@PhysicsDeveloper
@PhysicsDeveloper 6 ай бұрын
instagram.com/physicsdeveloper?igsh=ZGUzMzM3NWJiOQ==
@malikhasan-rh4ds
@malikhasan-rh4ds 6 ай бұрын
sir ap scene ma rehta hoa bhi itna close kaise jata ho
@PhysicsDeveloper
@PhysicsDeveloper 6 ай бұрын
Main apke bat ko samja nhi , thora sa details me boliye. Main apko jabab dene ki kosis karunga
@computaristgamer
@computaristgamer 6 ай бұрын
Thanks bro
@PhysicsDeveloper
@PhysicsDeveloper 6 ай бұрын
Your welcome, Please subscribe to the channel to become a part of our KZbin family.
@KiranDevi-fk6pn
@KiranDevi-fk6pn 6 ай бұрын
Bohot helpful tha thanks
@PhysicsDeveloper
@PhysicsDeveloper 6 ай бұрын
welcome
@DARKSOUL-th8ol
@DARKSOUL-th8ol 6 ай бұрын
Thumbnail pe kam karo...🙃
@PhysicsDeveloper
@PhysicsDeveloper 6 ай бұрын
I will try for better
@gani_jod
@gani_jod 6 ай бұрын
Can I be your editor
@godslayerpvp
@godslayerpvp 6 ай бұрын
Bhai achi editing kr lete hai koi jaroorat nhi😂😂
@gani_jod
@gani_jod 6 ай бұрын
@@godslayerpvp are par muje to jaroorat hai na🙂
@godslayerpvp
@godslayerpvp 6 ай бұрын
@@gani_jod 😂😂
@PhysicsDeveloper
@PhysicsDeveloper 6 ай бұрын
Thanks for asking, but I'll try to do it better .
@EXAML
@EXAML 6 ай бұрын
Bhai iss hindi se aur iss editing se tum asani se grow nahi kar paoge apne channel ko...please Learn spoken hindi 🙏
@godslayerpvp
@godslayerpvp 6 ай бұрын
Ha
@PhysicsDeveloper
@PhysicsDeveloper 6 ай бұрын
ha me kosis karunga. kia app mere sath hamara '3D runner game' bana rahe ho ?
@imabideoChannelSEOexpert
@imabideoChannelSEOexpert 7 ай бұрын
your KZbin channel. name. Physics Developer SEO score very low subscriber very low 1. SEO score is very low 2. Title, Description, Tags are not SEO friendly 3. Content is not sharing in your any social media platforms As a result, views, likes and subscribers are not increasing. Benefits of 100% SEO score:- 1. Views will increase 2. Likes will increase 3. Subscribers will increase 4. Customers will increase 5. Watch time will increase 6. Audience will increase 7. Sales will increase 8. your Channel KZbin Raking will So, if you want to increase your channel views, likes, comments and subscribers with proper video SEO for channel monetization. It will be your right decision. Do you want to increase your SEO score? I am waiting for your response
@PhysicsDeveloper
@PhysicsDeveloper 6 ай бұрын
give me your KZbin channel link !
@rolumilibran2815
@rolumilibran2815 7 ай бұрын
hi, I think you need to add the gdpr, I'm stuck implementing it, I can't get the test gdpr to appear in my apk, did you implement the gdpr in your game?
@ansqad226
@ansqad226 8 ай бұрын
which android version are you using?
@PhysicsDeveloper
@PhysicsDeveloper 6 ай бұрын
Actually i switch my unity version ,i forgot about previous version , now i use 2022.3
@ansqad226
@ansqad226 8 ай бұрын
alot of erros after updating to latest plugin, How to solve them please tell
@PhysicsDeveloper
@PhysicsDeveloper 6 ай бұрын
Reapeat one more on a new project
@NitinKumar-es1mo
@NitinKumar-es1mo 8 ай бұрын
bhai aisa mt kro channel band krke mt chale jana bro please you are our last hope koi bhi game development nhi sikha rha hai bhai bss app sikha rhe ho
@PhysicsDeveloper
@PhysicsDeveloper 8 ай бұрын
Main kosis karunga.
@zulfiqaryounus7479
@zulfiqaryounus7479 8 ай бұрын
didnt resolve ads it will crash.
@PhysicsDeveloper
@PhysicsDeveloper 8 ай бұрын
Try again once more with a new project , if it work then try to your original project. And watch the video properly. And dont forget to import the Google Ads Plugin. And dont mistake in Code