1 (edited by gaurangranoliya 2023-12-22 05:25:58)

Topic: Crash in InputOptions/InputManager/CustomClass UFE version 2.6.0

While making custom class selection in Input Manager in Input Options in Global config file, then start the scene it will crash the unity editor.
I tried in sample project also it is crashing everytime when click to play in unity editor.
Please can you tell me the fix?

This crash happen in new UFE version 2.6.0

Share

Thumbs up Thumbs down

Re: Crash in InputOptions/InputManager/CustomClass UFE version 2.6.0

If you have the Source version, under UFE.cs line 1520 change this:

p1Controller.humanController = inputManager.GetComponent<AbstractInputController>();

to this:

p1Controller.humanController = GetComponentInChildren<AbstractInputController>();

I'll patch this soon and improve on it.

Like UFE? Please rate and review us on the Asset Store!
Questions about the Forum? Check out our Karma FAQ.
Don't forget to check our discord channel.

3 (edited by gaurangranoliya 2023-12-24 00:01:59)

Re: Crash in InputOptions/InputManager/CustomClass UFE version 2.6.0

Yes later on, I was able to fix this error same as you provided.
Thanks.

Share

Thumbs up Thumbs down