<?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 — Nomenclature on scenes]]></title>
		<link>https://forum.infinity-code.com/viewtopic.php?id=889</link>
		<atom:link href="https://forum.infinity-code.com/extern.php?action=feed&amp;tid=889&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Nomenclature on scenes.]]></description>
		<lastBuildDate>Tue, 18 Sep 2018 12:58:56 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Nomenclature on scenes]]></title>
			<link>https://forum.infinity-code.com/viewtopic.php?pid=3934#p3934</link>
			<description><![CDATA[<p>Honestly, I do not even know what to say.<br />Here&#039;s a video of how to create and use scripts:<br /><a href="https://www.youtube.com/watch?v=XsyS4ANO0sE">https://www.youtube.com/watch?v=XsyS4ANO0sE</a></p>]]></description>
			<author><![CDATA[null@example.com (Alex Vertax)]]></author>
			<pubDate>Tue, 18 Sep 2018 12:58:56 +0000</pubDate>
			<guid>https://forum.infinity-code.com/viewtopic.php?pid=3934#p3934</guid>
		</item>
		<item>
			<title><![CDATA[Re: Nomenclature on scenes]]></title>
			<link>https://forum.infinity-code.com/viewtopic.php?pid=3929#p3929</link>
			<description><![CDATA[<p>I have tried but it says script can not be attached due to monobehavior etc.</p><p>Similarly we want labels for place names too.</p>]]></description>
			<author><![CDATA[null@example.com (jaisingla)]]></author>
			<pubDate>Tue, 18 Sep 2018 12:44:18 +0000</pubDate>
			<guid>https://forum.infinity-code.com/viewtopic.php?pid=3929#p3929</guid>
		</item>
		<item>
			<title><![CDATA[Re: Nomenclature on scenes]]></title>
			<link>https://forum.infinity-code.com/viewtopic.php?pid=3927#p3927</link>
			<description><![CDATA[<p>You need to attach this script to every building for which you want to display labels.</p>]]></description>
			<author><![CDATA[null@example.com (Alex Vertax)]]></author>
			<pubDate>Tue, 18 Sep 2018 12:42:06 +0000</pubDate>
			<guid>https://forum.infinity-code.com/viewtopic.php?pid=3927#p3927</guid>
		</item>
		<item>
			<title><![CDATA[Re: Nomenclature on scenes]]></title>
			<link>https://forum.infinity-code.com/viewtopic.php?pid=3923#p3923</link>
			<description><![CDATA[<p>Should&nbsp; I attach this script on building post processing??&nbsp; Sorry,&nbsp; m very new to unity</p>]]></description>
			<author><![CDATA[null@example.com (jaisingla)]]></author>
			<pubDate>Mon, 17 Sep 2018 17:41:46 +0000</pubDate>
			<guid>https://forum.infinity-code.com/viewtopic.php?pid=3923#p3923</guid>
		</item>
		<item>
			<title><![CDATA[Re: Nomenclature on scenes]]></title>
			<link>https://forum.infinity-code.com/viewtopic.php?pid=3917#p3917</link>
			<description><![CDATA[<p>Something like that:<br /></p><div class="codebox"><pre><code>using System.Linq;
using InfinityCode.RealWorldTerrain.OSM;
using UnityEngine;

public class ShowBiuldingAddress : MonoBehaviour
{
    public float yOffset = 40;
    public Font font;
    public int fontSize= 16;
    private GameObject textGO;

    private void Start ()
    {
        RealWorldTerrainOSMMeta meta = GetComponent&lt;RealWorldTerrainOSMMeta&gt;();
        if (meta == null || font == null)
        {
            Destroy(this);
            return;
        }

        RealWorldTerrainOSMMetaTag nameTag = meta.metaInfo.FirstOrDefault(m =&gt; m.title == &quot;name&quot;);
        if (nameTag == null)
        {
            Destroy(this);
            return;
        }

        textGO = new GameObject(&quot;Text&quot;);
        textGO.transform.SetParent(transform, false);
        textGO.transform.localPosition += new Vector3(0, yOffset, 0);
        TextMesh textMesh = textGO.AddComponent&lt;TextMesh&gt;();
        textMesh.alignment = TextAlignment.Center;
        textMesh.anchor = TextAnchor.MiddleCenter;
        textMesh.font = font;
        textMesh.fontSize = fontSize;
        textMesh.text = nameTag.info;
    }

    private void Update()
    {
        textGO.transform.LookAt(Camera.main.transform);
        textGO.transform.Rotate(Vector3.up, 180);
    }
}</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Alex Vertax)]]></author>
			<pubDate>Sun, 16 Sep 2018 00:52:45 +0000</pubDate>
			<guid>https://forum.infinity-code.com/viewtopic.php?pid=3917#p3917</guid>
		</item>
		<item>
			<title><![CDATA[Re: Nomenclature on scenes]]></title>
			<link>https://forum.infinity-code.com/viewtopic.php?pid=3916#p3916</link>
			<description><![CDATA[<p>Runtime</p>]]></description>
			<author><![CDATA[null@example.com (jaisingla)]]></author>
			<pubDate>Fri, 14 Sep 2018 12:38:52 +0000</pubDate>
			<guid>https://forum.infinity-code.com/viewtopic.php?pid=3916#p3916</guid>
		</item>
		<item>
			<title><![CDATA[Re: Nomenclature on scenes]]></title>
			<link>https://forum.infinity-code.com/viewtopic.php?pid=3914#p3914</link>
			<description><![CDATA[<p>I asked you about something else:<br />Do you want to show labels runtime or in the scene view?</p>]]></description>
			<author><![CDATA[null@example.com (Alex Vertax)]]></author>
			<pubDate>Fri, 14 Sep 2018 11:36:52 +0000</pubDate>
			<guid>https://forum.infinity-code.com/viewtopic.php?pid=3914#p3914</guid>
		</item>
		<item>
			<title><![CDATA[Re: Nomenclature on scenes]]></title>
			<link>https://forum.infinity-code.com/viewtopic.php?pid=3912#p3912</link>
			<description><![CDATA[<p>Yes. Labels for building or places.</p>]]></description>
			<author><![CDATA[null@example.com (jaisingla)]]></author>
			<pubDate>Fri, 14 Sep 2018 01:47:59 +0000</pubDate>
			<guid>https://forum.infinity-code.com/viewtopic.php?pid=3912#p3912</guid>
		</item>
		<item>
			<title><![CDATA[Re: Nomenclature on scenes]]></title>
			<link>https://forum.infinity-code.com/viewtopic.php?pid=3909#p3909</link>
			<description><![CDATA[<p>Oops. I for some reason thought that you are asking about Online Maps.</p><p>Do you want to show labels runtime or in the scene view?</p>]]></description>
			<author><![CDATA[null@example.com (Alex Vertax)]]></author>
			<pubDate>Thu, 13 Sep 2018 17:24:47 +0000</pubDate>
			<guid>https://forum.infinity-code.com/viewtopic.php?pid=3909#p3909</guid>
		</item>
		<item>
			<title><![CDATA[Re: Nomenclature on scenes]]></title>
			<link>https://forum.infinity-code.com/viewtopic.php?pid=3906#p3906</link>
			<description><![CDATA[<p>I mean to say that suppose we have osm file of buildings . now i want to put labels on building using information available in osm file ; how to do that in RWT?</p>]]></description>
			<author><![CDATA[null@example.com (jaisingla)]]></author>
			<pubDate>Thu, 13 Sep 2018 04:39:04 +0000</pubDate>
			<guid>https://forum.infinity-code.com/viewtopic.php?pid=3906#p3906</guid>
		</item>
		<item>
			<title><![CDATA[Re: Nomenclature on scenes]]></title>
			<link>https://forum.infinity-code.com/viewtopic.php?pid=3904#p3904</link>
			<description><![CDATA[<p>If you mean buildings painted in tiles, then most likely you&#039;d better use overlay.<br />If you mean 3D buildings, use TextMesh.<br /><a href="https://docs.unity3d.com/ScriptReference/TextMesh.html">https://docs.unity3d.com/ScriptReference/TextMesh.html</a></p>]]></description>
			<author><![CDATA[null@example.com (Alex Vertax)]]></author>
			<pubDate>Wed, 12 Sep 2018 17:46:31 +0000</pubDate>
			<guid>https://forum.infinity-code.com/viewtopic.php?pid=3904#p3904</guid>
		</item>
		<item>
			<title><![CDATA[Re: Nomenclature on scenes]]></title>
			<link>https://forum.infinity-code.com/viewtopic.php?pid=3903#p3903</link>
			<description><![CDATA[<p>Hello Alex, <br />Here I want to overly&nbsp; building&nbsp; names over buildings</p>]]></description>
			<author><![CDATA[null@example.com (jaisingla)]]></author>
			<pubDate>Wed, 12 Sep 2018 17:38:28 +0000</pubDate>
			<guid>https://forum.infinity-code.com/viewtopic.php?pid=3903#p3903</guid>
		</item>
		<item>
			<title><![CDATA[Re: Nomenclature on scenes]]></title>
			<link>https://forum.infinity-code.com/viewtopic.php?pid=3897#p3897</link>
			<description><![CDATA[<p>Hello.</p><p>It depends on the complexity of the shape.<br />If the shape is relatively simple, just draw it using a line or polygon.<br />If the shape is complex, you need to rasterize it, divide it into tiles (for example using MapTiler), and use it as overlay.<br /><a href="http://infinity-code.com/atlas/online-maps/pages/TilesetMapTilerOverlayExample.html">http://infinity-code.com/atlas/online-m … ample.html</a></p>]]></description>
			<author><![CDATA[null@example.com (Alex Vertax)]]></author>
			<pubDate>Wed, 12 Sep 2018 16:31:03 +0000</pubDate>
			<guid>https://forum.infinity-code.com/viewtopic.php?pid=3897#p3897</guid>
		</item>
		<item>
			<title><![CDATA[Nomenclature on scenes]]></title>
			<link>https://forum.infinity-code.com/viewtopic.php?pid=3890#p3890</link>
			<description><![CDATA[<p>Hello Alex, </p><p>How do we put shape file or osm data of nomenclature in to the scene.&nbsp; </p><p>Regards<br />Jai</p>]]></description>
			<author><![CDATA[null@example.com (jaisingla)]]></author>
			<pubDate>Wed, 12 Sep 2018 02:33:25 +0000</pubDate>
			<guid>https://forum.infinity-code.com/viewtopic.php?pid=3890#p3890</guid>
		</item>
	</channel>
</rss>
