1 (edited by knightgabriel4eva 2016-09-28 10:56:10)

Topic: error with UFE1.8

i am getting these 3 error messages any idea?


Assets/UFE Addons/Network Support/LegacyNetworkMultiplayerAPI.cs(79,50): warning CS0618: `UnityEngine.NetworkView.RPC(string, UnityEngine.RPCMode, params object[])' is obsolete: `NetworkView RPC functions are deprecated. Refer to the new Multiplayer Networking system.'

Assets/UFE Addons/Network Support/LegacyNetworkMultiplayerAPI.cs(85,10): warning CS0618: `UnityEngine.RPC' is obsolete: `NetworkView RPC functions are deprecated. Refer to the new Multiplayer Networking system.'

Assets/UFE/Scripts/UFE.cs(2158,28): error CS0117: `UnityEngine.Random' does not contain a definition for `InitState'

Share

Thumbs up Thumbs down

Re: error with UFE1.8

The first 2 messages are expected warnings due to the use of legacy network libraries. Nothing to worry about.
The third error (UnityEngine.Random) is probably happening because you are not using Unity 5.4.

Share

Thumbs up +1 Thumbs down