Playmaker Forum

PlayMaker Help & Tips => PlayMaker Help => Topic started by: laynardo on September 10, 2016, 05:19:57 PM

Title: iOS Compiling Errors
Post by: laynardo on September 10, 2016, 05:19:57 PM
I keep getting these errors when trying to Build and Run

Assets/PlayMaker Utils/Editor/PlayMakerEditorUtils.cs(102,94): warning CS0618: `HutongGames.PlayMakerEditor.FsmEditorUtility.GetActionScriptAsset(HutongGames.PlayMaker.FsmStateAction)' is obsolete: `Use ActionScripts.GetAsset instead.'

Assets/PlayMaker Custom Actions/uGui/uGuiInputFieldScreenToLocal.cs(65,59): warning CS0618: `UnityEngine.UI.InputField.ScreenToLocal(UnityEngine.Vector2)' is obsolete: `This function is no longer used. Please use RectTransformUtility.ScreenPointToLocalPointInRectangle() instead.'

Assets/PlayMaker Utils/Editor/PlayMakerEditorUtils.cs(111,90): warning CS0618: `HutongGames.PlayMakerEditor.FsmEditorUtility.GetActionLabel(HutongGames.PlayMaker.FsmStateAction)' is obsolete: `Use Labels.GetActionLabel instead.'
Title: Re: iOS Compiling Errors
Post by: Alex Chouls on September 11, 2016, 11:10:45 PM
These are warnings, not errors, so the build should work fine.

Obsolete warnings tell you that in the future some functionality might be removed, but it will continue to work for now.

Is the build failing? Do you have other errors?