- Home /
Remove Ghost image on android
Hello,
On an Android project, I have ghost effect on ball on my scene. It works perfectly on editor, but when I'm trying to test on phone, there are ghost effect. I have a simple scene with a plane, 4 wall (make with cubes) and three balls. Each ball have a script to maintain a constant velocity:
void FixedUpdate()
{
this.rigidbody.velocity = rigidbody.velocity.normalized * speed * Time.deltaTime;
}
Any help is welcome.
Thanks.Sorry dude, but this doesn't make sense.
You have a ghost effect, it works in editor but on phone there is ghost effect?
Are you talking about transparency on your texture?
Sorry if it's not clear, but I have no idea of the right term. It's not a texture problem, but an animation problem. When the balls move, it's like the refresh rate was not enough quick on the phone. It's like a drag behind the balls.
O$$anonymous$$ I get you. Can you explain your logic on your line of code? I think 'this' refers to that current script, not the gameObject.
Yes, this script is attached to the ball. this line of code is to set a constant velocity for it. At starting method, I set a Addforce method to impulse the movement. I don't know if the Update method is in cause of my problem...
It seems I have to work with Camera Clear Flag Options.
Thanks for your time.
Your answer
Follow this Question
Related Questions
Why does Input.GetJoystickNames keep maximum attached devices on Android 0 Answers
(UNSOLVED) Touch.deltaPosition on two fingers??How?? 2 Answers
Painfully slow on Android? 2 Answers
Android Build Crashes on Start: Didn't find class "com.facebook.FacebookContentProvider" 1 Answer
Dynamic change in orientation of Unity Player activity on click 0 Answers