<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Infinity Code Forum — Bug Reporting]]></title>
		<link>https://forum.infinity-code.com/index.php</link>
		<atom:link href="https://forum.infinity-code.com/extern.php?action=feed&amp;fid=14&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent topics at Infinity Code Forum.]]></description>
		<lastBuildDate>Sat, 13 Jan 2024 16:34:25 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[it gives a null when i try to build terrain]]></title>
			<link>https://forum.infinity-code.com/viewtopic.php?id=2221&amp;action=new</link>
			<description><![CDATA[<p>NullReferenceException: Object reference not set to an instance of an object<br />EasyRoads3Dv3.ERModularBase.OCCODCDOCO (System.Boolean&amp; multTerrainResFlag) (at &lt;130634fb11ce4768b626004b021c4576&gt;:0)<br />EasyRoads3Dv3Editor.ODDQOQQOQD.OnEnable () (at &lt;16e856aef402486e88a9c9c3417802d5&gt;:0)<br /> it gives that error.<br />NullReferenceException: Object reference not set to an instance of an object<br />EasyRoads3Dv3Editor.ODOCQCCQDD.OQOQCOQOQO (EasyRoads3Dv3.ERModularBase scr, EasyRoads3Dv3Editor.ODDQOQQOQD eScr) (at &lt;16e856aef402486e88a9c9c3417802d5&gt;:0)<br />EasyRoads3Dv3Editor.ODDQOQQOQD.OnInspectorGUI () (at &lt;16e856aef402486e88a9c9c3417802d5&gt;:0)<br />UnityEditor.UIElements.InspectorElement+&lt;&gt;c__DisplayClass72_0.&lt;CreateInspectorElementUsingIMGUI&gt;b__0 () (at &lt;2e279d988b9d4542841de511fbfdf8c2&gt;:0)<br />UnityEngine.GUIUtility:ProcessEvent(Int32, IntPtr, Boolean&amp;)</p>]]></description>
			<author><![CDATA[null@example.com (a4panda)]]></author>
			<pubDate>Sat, 13 Jan 2024 16:34:25 +0000</pubDate>
			<guid>https://forum.infinity-code.com/viewtopic.php?id=2221&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[iOS Crash after opening OnlineMaps]]></title>
			<link>https://forum.infinity-code.com/viewtopic.php?id=1855&amp;action=new</link>
			<description><![CDATA[<p>My team has isolated that the OnlineMaps script is somehow causing our app to crash when closing the app after opening a map.</p><p>Steps:<br />1. Launch an app on iOS <br />2. Activate a game object with the OnlineMaps script. This can be closed or left open.<br />3. Close the app (for us, this means backgrounding and closing the app)<br />4. A native iOS popup displays saying that the app has crashed.</p><p>The stakes for this might seem low as the crash is happening as the user is closing the app anyway, but obviously this would be a terrible user experience.</p><p>We were able to isolate the OnlineMaps script as the culprit through a painstaking process of disabling/removing all of the components on our map prefab and rebuilding the app. The only component change that resulted in different behavior was removing the OnlineMaps script from the prefab.</p><p>In our implementation, we are using the GameObject.SetActive() method to display our map prefab and hide it. We are not destroying/recreating the object when we hide/display it again. It seems that there is something that is set or turned on in the OnlineMaps script that does not get destroyed or reset properly on application quit on iOS.</p><p>This is as much information as we know to include with this for now. Any information or things we can test would be appreciated.</p><p>version: 3.7.11.1<br />unity: 2020.3.9fd1</p>]]></description>
			<author><![CDATA[null@example.com (cmersereau)]]></author>
			<pubDate>Fri, 08 Oct 2021 20:02:40 +0000</pubDate>
			<guid>https://forum.infinity-code.com/viewtopic.php?id=1855&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[error CS0118: 'Terrain' is a namespace but is used like a type]]></title>
			<link>https://forum.infinity-code.com/viewtopic.php?id=1817&amp;action=new</link>
			<description><![CDATA[<p>Assets\Infinity Code\MeshToTerrain\Scripts\Editor\Converter\MeshToTerrain.Textures.cs(233,36): error CS0118: &#039;Terrain&#039; is a namespace but is used like a type</p><p>Probably not a bug but def a conflict. Any idea what can cause this error?&nbsp; I&#039;m hoping there&#039;s a simple explanation because this tool is fantastic.</p>]]></description>
			<author><![CDATA[null@example.com (70superbird)]]></author>
			<pubDate>Fri, 30 Jul 2021 17:44:15 +0000</pubDate>
			<guid>https://forum.infinity-code.com/viewtopic.php?id=1817&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Unity Compiling Error - IEnumerable<U> get items function not found]]></title>
			<link>https://forum.infinity-code.com/viewtopic.php?id=1783&amp;action=new</link>
			<description><![CDATA[<p><a href="https://fogbugz.unity3d.com/default.asp?1338925_44s8hbnbq0v1h639">https://fogbugz.unity3d.com/default.asp … nbq0v1h639</a></p><p>Unity has a difficult time compiling abstract classes that implement IEnumerable&lt;U&gt;.</p><p>It&#039;s a Unity compiling error.&nbsp; But it might be worth considering refactoring the IEnumerable access pattern.&nbsp; I went through, and removed the IEnumerable&lt;U&gt; from the code base, and had explicit references to the items properties in all of the examples.&nbsp; Unity still didn&#039;t compile the IL2CPP iOS code correctly.&nbsp; </p><p>Suggestion: consider refactoring the managers implementing IEnumerable (Not necessary if Unity fixes the bug, but may be good for hardening the code, or to be aware of the issue until Unity addresses the issue). </p><p>Request:&nbsp; Please wrap the entire asset in a namespace.&nbsp; This will be useful for distributing through the package manager, or pre-compiling in an independent solution (not in C-Sharp-First-Pass).&nbsp; Examples could all be imported as Samples.</p><p>Thanks!<br />(Mostly posting here to track the Unity Bug report)</p>]]></description>
			<author><![CDATA[null@example.com (Jamoke)]]></author>
			<pubDate>Wed, 26 May 2021 18:55:36 +0000</pubDate>
			<guid>https://forum.infinity-code.com/viewtopic.php?id=1783&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Error CS0619 also Window not show up.]]></title>
			<link>https://forum.infinity-code.com/viewtopic.php?id=387&amp;action=new</link>
			<description><![CDATA[<p>I purchased Real World Terrain but crashed after imported assert. </p><p>I reimported assets but some error. Error CS061</p><p>Assets/Infinity Code/Real World Terrain/Scripts/Editor/RealWorldTerrainGUIUtils.cs(674,43): error CS0619: `UnityEngine.Resources.LoadAssetAtPath(string, System.Type)&#039; is obsolete: `Use AssetDatabase.LoadAssetAtPath instead (UnityUpgradable) -&gt; * [UnityEditor] UnityEditor.AssetDatabase.LoadAssetAtPath(*)&#039;</p><p>Assets/Infinity Code/Real World Terrain/Scripts/Editor/RealWorldTerrainGUIUtils.cs(675,46): error CS0619: `UnityEngine.Resources.LoadAssetAtPath(string, System.Type)&#039; is obsolete: `Use AssetDatabase.LoadAssetAtPath instead (UnityUpgradable) -&gt; * [UnityEditor] UnityEditor.AssetDatabase.LoadAssetAtPath(*)&#039;</p><br /><p>Assets/Infinity Code/Real World Terrain/Scripts/Editor/RealWorldTerrainGUIUtils.cs(676,43): error CS0619: `UnityEngine.Resources.LoadAssetAtPath(string, System.Type)&#039; is obsolete: `Use AssetDatabase.LoadAssetAtPath instead (UnityUpgradable) -&gt; * [UnityEditor] UnityEditor.AssetDatabase.LoadAssetAtPath(*)&#039;</p><br /><p>How it fix? Also I learned from tutorial but unity3d menu Window---&gt;Infinity Code is not show up (display)</p>]]></description>
			<author><![CDATA[null@example.com (hr.violetrose2013)]]></author>
			<pubDate>Mon, 16 Jan 2017 12:08:29 +0000</pubDate>
			<guid>https://forum.infinity-code.com/viewtopic.php?id=387&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Compile errors when importing package, I can't use it!!]]></title>
			<link>https://forum.infinity-code.com/viewtopic.php?id=163&amp;action=new</link>
			<description><![CDATA[<p>As subject, please find attached screen capture. I&#039;d really appreciate if this can be solved as soon as possible. </p><p>Thanks</p>]]></description>
			<author><![CDATA[null@example.com (omml)]]></author>
			<pubDate>Sat, 04 Jun 2016 19:25:11 +0000</pubDate>
			<guid>https://forum.infinity-code.com/viewtopic.php?id=163&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[What is happening to my mesh?]]></title>
			<link>https://forum.infinity-code.com/viewtopic.php?id=126&amp;action=new</link>
			<description><![CDATA[<p>No matter what i change in my settings for the plugin my mesh continues to get a zig zag edge as seen on the picture.</p><p>How to fix that?</p>]]></description>
			<author><![CDATA[null@example.com (martinbaun)]]></author>
			<pubDate>Sun, 03 Apr 2016 21:17:59 +0000</pubDate>
			<guid>https://forum.infinity-code.com/viewtopic.php?id=126&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[serialization error message]]></title>
			<link>https://forum.infinity-code.com/viewtopic.php?id=27&amp;action=new</link>
			<description><![CDATA[<p>Recursive Serialization is not supported. You can&#039;t dereference a PPtr while loading. (Constructors of C# classes may not load objects either eg. EditorGUIUtility.TextContent should be moved to OnEnable. See stacktrace.)<br />UnityEditor.EditorUtility:InstanceIDToObject(Int32)<br />MeshToTerrainPrefs:LoadPref(String, List`1) (at Assets/Infinity Code/MeshToTerrain/Scripts/Editor/MeshToTerrainPrefs.cs:221)<br />MeshToTerrainPrefs:Load() (at Assets/Infinity Code/MeshToTerrain/Scripts/Editor/MeshToTerrainPrefs.cs:171)<br />MeshToTerrainPrefs:.ctor() (at Assets/Infinity Code/MeshToTerrain/Scripts/Editor/MeshToTerrainPrefs.cs:97)<br />MeshToTerrain:.ctor()<br />UnityEditorInternal.InternalEditorUtility:LoadSerializedFileAndForget(String)<br />UnityEditor.WindowLayout:LoadWindowLayout(String, Boolean)</p>]]></description>
			<author><![CDATA[null@example.com (kl)]]></author>
			<pubDate>Fri, 04 Sep 2015 14:12:49 +0000</pubDate>
			<guid>https://forum.infinity-code.com/viewtopic.php?id=27&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[another bug under unity 5.1.3p1]]></title>
			<link>https://forum.infinity-code.com/viewtopic.php?id=26&amp;action=new</link>
			<description><![CDATA[<p>during conversion</p><p>Floorf (offsetsIter-&gt;y) == offsetsIter-&gt;y</p>]]></description>
			<author><![CDATA[null@example.com (kl)]]></author>
			<pubDate>Fri, 04 Sep 2015 13:16:12 +0000</pubDate>
			<guid>https://forum.infinity-code.com/viewtopic.php?id=26&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Crashed my computer under unity 5.1.3p1]]></title>
			<link>https://forum.infinity-code.com/viewtopic.php?id=25&amp;action=new</link>
			<description><![CDATA[<p>Issue 1 is that Path.Combine is failing. Resoluition is that i prepended system.io. </p><p>Issue 2 related to MESToTerrains editor window. <br />When you dock then you cannot seee the start button. </p><p>I you do not dock it the and press start on a small mesh/terrain 512x512 then the the error messag is <br />&quot;Invalid AABB rkBox UnityEditor.DockArea:OnGUI()&quot;<br />and the computer eventually crashed after attemtping to generate +100 terrains</p>]]></description>
			<author><![CDATA[null@example.com (kl)]]></author>
			<pubDate>Fri, 04 Sep 2015 12:04:19 +0000</pubDate>
			<guid>https://forum.infinity-code.com/viewtopic.php?id=25&amp;action=new</guid>
		</item>
	</channel>
</rss>
