Bro can i use your mesh2 texture for my project? It’s copyrighted?
@PhysicsDeveloper24 күн бұрын
Bro, Everything is FREE in my channel.
@YGDEV692 ай бұрын
Make third person shooter using unity's third person starter asset
@PhysicsDeveloper2 ай бұрын
Of course
@tech5t2 ай бұрын
very Nice
@PhysicsDeveloper2 ай бұрын
Thank you
@tech5t2 ай бұрын
vai lifeline 0 hone ke bat vi game over nahi ho raha he erro arahe app ka full corse kar raha hu maza arahe
@PhysicsDeveloper2 ай бұрын
But wo tutorial abhi stopped kar diya hai
@usercontent21122 ай бұрын
Thank you so much. Very valuabe tutorial!
@PhysicsDeveloper2 ай бұрын
Glad it was helpful!
@Zeck-Anime2 ай бұрын
ei men pode manda o projeto eu não entendo oque voce fala
@PhysicsDeveloper2 ай бұрын
Eu vou tentar. entre em contato pelo instagram. instagram.com/physicsdeveloper?igsh=ZGUzMzM3NWJiOQ==
@usercontent21122 ай бұрын
@Neguinho_Nerd você precisa aprender inglês, men
@Zeck-Anime2 ай бұрын
@@usercontent2112 eu eu consigo ler ,mas escutar ainda é mais ou menos
@abharanisaha73962 ай бұрын
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
@PhysicsDeveloper2 ай бұрын
instagram.com/physicsdeveloper?igsh=ZGUzMzM3NWJiOQ== contact me, I will fix it tomorrow in DC
@ytgbh3 ай бұрын
bhai pls help
@PhysicsDeveloper3 ай бұрын
Ekbar mera script use kar lena(link in description) Fir mujse batana
@ytgbh3 ай бұрын
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-o2n3 ай бұрын
Ha view low dekh k is series ko rok mat ak din yaa channel no. 1 hoga❤
@PhysicsDeveloper3 ай бұрын
Thank you bro
@abharanisaha73963 ай бұрын
Bhaiya please don't stop this course im just 19year old im making my own open world game so i need like this videos
@PhysicsDeveloper3 ай бұрын
Welcome bro
@ANDROIDGAME173 ай бұрын
Nice
@PhysicsDeveloper3 ай бұрын
Thank you
@Falcondev12434 ай бұрын
Link
@PhysicsDeveloper4 ай бұрын
abhi puri tarah se huwa nhi hai
@Fahadalikhan004 ай бұрын
Hello bhai nice video
@PhysicsDeveloper4 ай бұрын
thank you bro
@NitinKumar-es1mo4 ай бұрын
Bro tutorial banao😊
@PhysicsDeveloper4 ай бұрын
ok bro
@GroootGamer4 ай бұрын
Bro i am a also game developer can we work together Give me your contact details
@PhysicsDeveloper4 ай бұрын
instagram.com/physicsdeveloper/
@BadApple-um7vb4 ай бұрын
Sir can you help me? My mouse delta not working
@PhysicsDeveloper4 ай бұрын
Can you explain me some details. Like what you are doing and what exactly you should do. To understand about the problem.
@mr.akash_gamers4 ай бұрын
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.
@PhysicsDeveloper4 ай бұрын
I will make a new tutorial properly, where we covered all thing. This video is so old .
@omkali72125 ай бұрын
Nice bro thanks for helping
@PhysicsDeveloper4 ай бұрын
Your welcome
@AshwinSKumar5 ай бұрын
Does this still work?
@PhysicsDeveloper4 ай бұрын
Yes
@AshwinSKumar4 ай бұрын
@@PhysicsDeveloper great
@PhysicsDeveloper2 ай бұрын
thanks
@AshwinSKumar2 ай бұрын
@@PhysicsDeveloper no problem
@HemantPatel705 ай бұрын
Android phones me Player ko left swipe and right swipe kar ke kese move kare
@PhysicsDeveloper5 ай бұрын
You can add button system or swipe system using touce input
@sswt37965 ай бұрын
bhaai.. ye to TATTI hai
@PhysicsDeveloper2 ай бұрын
yes, no doubt
@aakorative38965 ай бұрын
Nice job! Excited to see more dev logs.
@PhysicsDeveloper5 ай бұрын
i will try to make other copy game ,
@aakorative38965 ай бұрын
@@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.
@PhysicsDeveloper5 ай бұрын
Well
@huh22535 ай бұрын
bro this aint far cry this shit is cry from afar
@aakorative38965 ай бұрын
rude
@princebali98385 ай бұрын
@@aakorative3896 he is not rude he is telling the truth
@PhysicsDeveloper5 ай бұрын
i will try to better
@LmaoSkyWalker5 ай бұрын
lmaoooo
@dhruvop6t925 ай бұрын
nice bro !! excited to see full game .
@PhysicsDeveloper5 ай бұрын
Very soon!
@justlaugh27465 ай бұрын
whats your pc specs ?
@PhysicsDeveloper5 ай бұрын
Its very low configuration , so sometimes it hang
@GIGADEV6906 ай бұрын
Nice!!!!
@PhysicsDeveloper6 ай бұрын
Thank you! Cheers!
@EnergyEclipseGaming6 ай бұрын
wow... amazing content....
@PhysicsDeveloper6 ай бұрын
Thank you so much 😀
@princebali98386 ай бұрын
Where is quality?
@PhysicsDeveloper6 ай бұрын
Low bagdet game vai 😀😅
@princebali98386 ай бұрын
@@PhysicsDeveloper then please don't say it is AAA you are making fun of indian devlopers
@PacifistJACK5 ай бұрын
@@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.
@princebali98385 ай бұрын
@@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
@aakorative38965 ай бұрын
@@princebali9838 Then you should know the effort he put into is appreciable and an artist should always encourage other artists.
@hustlersdomain6 ай бұрын
learn english.
@PhysicsDeveloper6 ай бұрын
Thank you, i will try to better.
@FalconGamz6 ай бұрын
amazing! good to see indian indie games
@PhysicsDeveloper6 ай бұрын
Thank you bro
@PRATHAM_TALUKDAR5 ай бұрын
I am also a indian indie game dev
@satishkumarrawat87146 ай бұрын
Very Nice Brother
@PhysicsDeveloper6 ай бұрын
Thank you, lots of
@brightersofficial93156 ай бұрын
Hy bro can u help me
@PhysicsDeveloper6 ай бұрын
How can i help you ?
@brightersofficial93156 ай бұрын
Stuck in a problem in a project do u use any social?
@PhysicsDeveloper6 ай бұрын
Ok i will give you .
@PhysicsDeveloper6 ай бұрын
m.facebook.com/profile.php?id=100066750184356
@brightersofficial93156 ай бұрын
@@PhysicsDeveloper bro I don't use fb do u use discord Instragram or what's app
@treestudiosuniverse6 ай бұрын
let colab bro
@PhysicsDeveloper6 ай бұрын
How it posible ?
@treestudiosuniverse6 ай бұрын
@@PhysicsDeveloper u are a game developer , i am game developer , so why not possible
@treestudiosuniverse6 ай бұрын
me aur app milke live podocast karte hai , game dev related
@PhysicsDeveloper6 ай бұрын
Abhi situation bohut kharab hai , bad me soch na padega.
sir ap scene ma rehta hoa bhi itna close kaise jata ho
@PhysicsDeveloper6 ай бұрын
Main apke bat ko samja nhi , thora sa details me boliye. Main apko jabab dene ki kosis karunga
@computaristgamer6 ай бұрын
Thanks bro
@PhysicsDeveloper6 ай бұрын
Your welcome, Please subscribe to the channel to become a part of our KZbin family.
@KiranDevi-fk6pn6 ай бұрын
Bohot helpful tha thanks
@PhysicsDeveloper6 ай бұрын
welcome
@DARKSOUL-th8ol6 ай бұрын
Thumbnail pe kam karo...🙃
@PhysicsDeveloper6 ай бұрын
I will try for better
@gani_jod6 ай бұрын
Can I be your editor
@godslayerpvp6 ай бұрын
Bhai achi editing kr lete hai koi jaroorat nhi😂😂
@gani_jod6 ай бұрын
@@godslayerpvp are par muje to jaroorat hai na🙂
@godslayerpvp6 ай бұрын
@@gani_jod 😂😂
@PhysicsDeveloper6 ай бұрын
Thanks for asking, but I'll try to do it better .
@EXAML6 ай бұрын
Bhai iss hindi se aur iss editing se tum asani se grow nahi kar paoge apne channel ko...please Learn spoken hindi 🙏
@godslayerpvp6 ай бұрын
Ha
@PhysicsDeveloper6 ай бұрын
ha me kosis karunga. kia app mere sath hamara '3D runner game' bana rahe ho ?
@imabideoChannelSEOexpert7 ай бұрын
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
@PhysicsDeveloper6 ай бұрын
give me your KZbin channel link !
@rolumilibran28157 ай бұрын
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?
@ansqad2268 ай бұрын
which android version are you using?
@PhysicsDeveloper6 ай бұрын
Actually i switch my unity version ,i forgot about previous version , now i use 2022.3
@ansqad2268 ай бұрын
alot of erros after updating to latest plugin, How to solve them please tell
@PhysicsDeveloper6 ай бұрын
Reapeat one more on a new project
@NitinKumar-es1mo8 ай бұрын
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
@PhysicsDeveloper8 ай бұрын
Main kosis karunga.
@zulfiqaryounus74798 ай бұрын
didnt resolve ads it will crash.
@PhysicsDeveloper8 ай бұрын
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