Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
iOS non compile error
#6
Here is a copy of the post you were searching for, if you still need it

(01-26-2018, 08:07 PM)_Aka_ Wrote: Issue:
WebGL builds not working

Fix:
in Assets\Packages\Curvy\Base\CG Modules\CreateMesh.cs, replace the one occurrence of

Code:
[FieldCondition("canUpdate", true, false, ConditionalAttribute.OperatorEnum.AND, "canGroupMeshes", true, false, Action = ConditionalAttribute.ActionEnum.Enable)]
with
Code:
#if UNITY_EDITOR
[FieldCondition("canUpdate", true, false, ConditionalAttribute.OperatorEnum.AND, "canGroupMeshes", true, false, Action = ConditionalAttribute.ActionEnum.Enable)]
#endif

and both occurrences of
Code:
[FieldCondition("canUpdate", true, false, ConditionalAttribute.OperatorEnum.AND, "m_Collider", CGColliderEnum.None, true, Action = ConditionalAttribute.ActionEnum.Enable)]
with

Code:
#if UNITY_EDITOR
[FieldCondition("canUpdate", true, false, ConditionalAttribute.OperatorEnum.AND, "m_Collider", CGColliderEnum.None, true, Action = ConditionalAttribute.ActionEnum.Enable)]
#endif
Please consider leaving a review for Curvy. This will help a lot keeping Curvy relevant in the eyes of the Asset Store algorithm.
Reply


Messages In This Thread
iOS non compile error - by hawken - 01-30-2018, 10:12 AM
RE: iOS non compile error - by _Aka_ - 01-30-2018, 11:41 AM
RE: iOS non compile error - by hawken - 01-30-2018, 12:16 PM
RE: iOS non compile error - by hawken - 02-14-2018, 10:09 AM
RE: iOS non compile error - by _Aka_ - 02-14-2018, 06:55 PM
RE: iOS non compile error - by _Aka_ - 02-14-2018, 06:57 PM
RE: iOS non compile error - by hawken - 02-15-2018, 06:34 AM
RE: iOS non compile error - by _Aka_ - 02-15-2018, 03:11 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Error when trying to connect nodes in prefab edit mode Lupos 4 9 06-02-2023, 10:27 AM
Last Post: _Aka_
  Error when switching splines ricke 3 7 10-10-2022, 08:46 AM
Last Post: _Aka_
  Error when recreating splines / connections jh092 3 7 07-25-2022, 09:58 AM
Last Post: _Aka_
Question Error after upgrade: (are you missing a using directive or an assembly reference?) boriskourt 3 7 05-17-2022, 12:32 PM
Last Post: _Aka_

Forum Jump: