Important News

We have released Shinobi Life Online Pre-Alpha Version 1.1.0.0! This update features Earth Release: Earth Dome Jutsu, Aiming Mode and more! Try it out and tell us what you think.

User

Welcome, Guest.
Please login or register.
 
 
 
Forgot your password?

Discord

Statistics

Members
Total Members: 55954
Latest: wexaso4071
New This Month: 1
New This Week: 3
New Today: 1
Stats
Total Posts: 55780
Total Topics: 3340
Most Online Today: 1410
Most Online Ever: 4232
(January 14, 2020, 07:47:33)
Users Online
Members: 1
Guests: 1121
Total: 1130
MaybellSto
Google (8)

Author Topic: Jumping script help c#  (Read 9896 times)

0 Members and 1 Guest are viewing this topic.

Offline Kakashi Natsu

  • Chunin Poster
  • ***
  • Posts: 141
  • Reputation Power: 2
  • Kakashi Natsu has no influence.
  • Gender: Male
  • Give up trying to make me give up.
    • View Profile
  • Clan: Agni
Jumping script help c#
« on: August 08, 2016, 22:05:58 »
EDITED: FIXED>> NO NEED FOR HELP.

i need help with this jumping script:
(UPDATE): I got it to work, I dont know if there is a more efficient way to script this.
Code: [Select]
void FixedUpdate(){


float straffe = Input.GetAxis ("Horizontal") * speed;
float translation = Input.GetAxis ("Vertical") * speed*multiplier;
bool attack = Input.GetKey (KeyCode.E);

Grounded ();

if (IsGrounded) {

gravity = 0;
moveDirection = new Vector3(straffe,0 , translation);
anim.SetBool ("IsGrounded", true);
canJump = true;

} else {

if (!canJump) {
gravity += 0.1f;
moveDirection = new Vector3(straffe,-gravity , translation);
anim.SetBool ("IsGrounded", false);
}
}



if (canJump) {
if (Input.GetKey (KeyCode.Space)) {
power -= 1;
if (power < 0) {
canJump = false;

}

moveDirection = moveDirection = new Vector3 (straffe, power, translation);
} else {
power = copypower;
canJump = false;

}
}
print (rbody.velocity);

rbody.velocity = moveDirection;

if (translation > 0) {
anim.SetBool ("IsWalking", true);
anim.SetBool ("IsWalkingBack", false);
anim.SetBool ("IsIdle", false);

if (Input.GetKeyDown (KeyCode.LeftShift)) {
anim.SetBool ("IsRunning", true);

multiplier = 2;

}
if (Input.GetKeyUp (KeyCode.LeftShift)) {
anim.SetBool ("IsRunning", false);
multiplier = 1;
}
}else if (translation < 0 ) {
multiplier = 1;
anim.SetBool ("IsWalkingBack", true);
anim.SetBool ("IsWalking", false);
anim.SetBool ("IsIdle", false);
anim.SetBool ("IsRunning", false);
}
else {
multiplier = 1;
anim.SetBool ("IsWalking", false);
anim.SetBool ("IsWalkingBack", false);

if (attack) {
anim.SetBool ("IsIdle", false);

} else {
anim.SetBool ("IsIdle",true);
}
}

if (straffe > 0 || straffe < 0) {
anim.SetBool ("IsWalking", true);
anim.SetBool ("IsIdle", true);

}

if (Input.GetKeyDown ("escape")) {
counter++;
}

}

void Grounded(){
RaycastHit hitInfo;
if(Physics.Raycast(transform.position + (Vector3.up * 0.1f), Vector3.down, out hitInfo, 0.1f))
{

IsGrounded = true;

}
else
{
IsGrounded = false;

}

}


there is no issues with the frames of when i press key down and when it events happens
here is the ground porgram to check if its on the ground
Code: [Select]
void Grounded(){
RaycastHit hitInfo;
if(Physics.Raycast(transform.position + (Vector3.up * 0.1f), Vector3.down, out hitInfo, 0.3f))
{

IsGrounded = true;

}
else
{
IsGrounded = false;

}

}


Thanks, if you need ANY MORE INFORMATION, JUST ASK!, no question is a stupid one. only answers have the possibility to be stupid.
« Last Edit: August 10, 2016, 02:12:34 by Kakashi Natsu »



Offline Mars

  • Hidden Hill Kage
  • Hidden Village Kage
  • Sennin Poster
  • ***
  • Posts: 2 638
  • Reputation Power: 6
  • Mars has no influence.
  • Gender: Male
    • View Profile
  • Clan: Hinode
  • Organization: YĆ¼rei
Re: Jumping script help c#
« Reply #1 on: August 09, 2016, 10:59:35 »
  • Character Name: Kuria Hinode

 

Recent Topics

Dev Blog 8 - March 7th 2017 by Maxxx001
March 28, 2025, 21:24:39

WARNING! MANGA LAST PAGE! Naruto 698. by sussie
March 27, 2025, 12:12:30

Buy Waklert 150: A Comprehensive Solution to Stay Energized|cheaptrustedpharmacy by ameliasmith
March 24, 2025, 06:44:10

Shinobi Life Online - Updated Combat Test - 17/02/2025 by mamita
March 07, 2025, 12:55:46

Koryuu Clan by mamita
February 21, 2025, 06:35:26

Zeimatsu Clan (UPDATED OVERALL 3) by mamita
February 21, 2025, 06:31:31

Nogitsu Clan by mamita
February 21, 2025, 06:27:59

Yoshizaki Clan by mamita
February 21, 2025, 06:26:01

The Chiitsuki Clan by mamita
February 21, 2025, 06:20:54

OdiloShinnai by mamita
February 21, 2025, 06:15:18

Top Posters

Mars
Posts: 2638
Reminance
Posts: 2233
Shivraj
Posts: 1610
m4r1us
Posts: 1298
Manuster
Posts: 1267
NinjaMirage
Posts: 1165
Nova
Posts: 1140
taigakun
Posts: 1094
Fraudulent
Posts: 1086
Konohuro
Posts: 1056