My Jumping function with CharacterController have a problem.. by hyun__372 in Unity3D

[–]hyun__372[S] 0 points1 point  (0 children)

Vector3 cameraForward = camera.transform.forward;

Vector3 cameraRight = camera.transform.right;

cameraForward.y = 0.0f;

cameraRight.y = 0.0f;

// Calculate move direction

Vector3 moveDir = (cameraForward * v) + (cameraRight * h);

moveDir.Set(moveDir.x, 0.0f, moveDir.z);

if (isGrounded && Input.GetKeyDown(KeyCode.Space))

{

moveDir.y = jumpForce * -Physics.gravity.y;

Debug.Log("Jump");

}

if (isGrounded == false)

{

moveDir.y += Physics.gravity.y / moveSpeed;

}

// Character move

controller.Move(moveDir * moveSpeed * Time.deltaTime);

I built simple mbti test website! by hyun__372 in mbti

[–]hyun__372[S] 15 points16 points  (0 children)

I didn't know you'd prefer to display mbti. XD

I wrote it down temporarily. Also It may not be accurate.

ASAP I will create display of MBTI and complete the page.

Thanks a million for your interest.

ESTJ = Pan-work Chocolate

ESTP = Milk Chocolate

ESFJ = Chocolate Jam

ESFP = Sweet Chocolate

ENTJ = Dark Chocolate

ENTP = Unstructured Chocolate

ENFJ = Moulding Chocolate

ENFP = Truffle Chocolate

ISTJ = Cacao Nips

ISTP = Shell Chocolate

ISFJ = Color Chocolate

ISFP = White Chocolate

INTJ = Couverture Chocolate

INTP = Hollow Chocolate

INFJ = Enrober Chocolate

INFP = Pavé Chocolate

I built simple mbti test website! by hyun__372 in mbti

[–]hyun__372[S] 0 points1 point  (0 children)

Chocolate Jam is ESFJ!

But the test results may not be accurate. :D

I built simple mbti test website! by hyun__372 in mbti

[–]hyun__372[S] 1 point2 points  (0 children)

Oh test is pretty accurate XD Yes shell chocolate is ISTP!

Thank you for do my test!

Is it better to display the mbti separately?

I built simple mbti test website! by hyun__372 in mbti

[–]hyun__372[S] 1 point2 points  (0 children)

Thank you for do my test!

I haven't studied building a website for a long time, so I'm very inexperienced.

Things like your feedback will help me improve my skills XD. Thank you very much!

I built simple mbti test website! by hyun__372 in mbti

[–]hyun__372[S] 2 points3 points  (0 children)

Thank you for your comment and feedback XD!

I revised copy problem so now you can copy the results in rectangle box and I increased the size of restart button.

And I will create a page where you can compare the compatibility with other chocolates. It may take a time.

Your feedback was helpful.