Mass Place Trees tagging
Hello :P So .. i used mass place trees with 4 prefabs, they are tagges as "Trees" but, when i use this script to check tags: RaycastHit hit; Vector3 DirectionRay =...
View ArticleUsing FindGameObjectsWithTag to print text
I'm working on a small script which will print when an object with a specific tag is in the scene. I have it working as far as letting me know there aren't any in the scene, but unfortunately when an...
View Articlecreating enemies
I created 3d model and imported it into unity3d and I added a texture to the body but the skin of my model does not look like human skin so the question is how to make the model skin looks like human's...
View Articlelast collision detection?
I'm trying to create a Pong game with 4 players. I need to make the scores, so if player01 last hit it and then touches one of the walls, player01 will get the point. But i don't know how to make it...
View ArticleInclude tags
How can I include tags in an unitypackage and asset store build? It would have to contain the tagmanager.asset right, but how am I supposed to include this in any of the above?
View ArticleUsage of multiple tags or some other workaround?
I've a projectile that I want to work for two tags "Enemy" and "Player" but after a bit of Google search: it doesn't seem like there is a way to tag them both (unless I'm mistaken?) but in that case,...
View ArticleHow do you change the tag of an Object in runtime?
Please I am desperate, how do I change a tag during runtime: I tried what I knew from Unity 4- I have a tagged Object "Tag1" and have a second tag "Tag2"; Then I use this: void Update() {...
View ArticleProblems with tagging using OnMouseDown()
Hey guys, I have been writing a really successful script and I nearly finished it, but I faced a problem- using UnityEngine; using System.Collections; public class Test : MonoBehaviour { void...
View ArticleHow to Make a Transform Variable Target a Random GameObject?
I have a script where an object needs to target a random GameObject, it then immediately faces it and starts moving towards it (last bits not important). Does anybody have any ideas of how I can target...
View ArticleWhat is the problem with this script?
I want if I click on my object it to change tags in both ways but only does on one way. I want both Respawn-> Player and the opposite but it can only go one way- if it switches to Player it can't go...
View ArticleHow can I change the tags of a different object if I click on this one and do...
Hey, I was wondering if I click on a game object could it change it's own tag and if another game object has the same tag it's tag to be changed as well. Something like I have two tags- TagA and TagB;...
View ArticleWhat is the problem with this script?
Hey, I was making this script for some time and I wanted it to work that way: I have two tags and two objects; If I click on object one it will change it's tag to tagOne; If I click on the other object...
View ArticleDelete some unused tags and game objects tag changes unity 5
Hi, I've noticed if I delete any unused tags then and game objects in the scene with tags below the deleted ones change to whatever has moved into that position ? Should it do that? I'm sure it didn't...
View ArticleDrag/drop potentially unlimited generated "creep" objects, but one at a time
What I currently have is a script to drag a 2D sprite. The problem is, the script runs off of the object to be dragged's tag. However, If I have, for example, seventy of these same objects, then...
View ArticleTags/custom data for texture?
Hey, i read that because unitys serialization system was written to not support polymorphism very well, they decided to make texture2D and so on sealed, which means these classes can't be extended. I...
View ArticleNullReferenceException: Object Reference not set to an instance of an object
I am making a 2D game in the style of pac-man. I am using a script to place "dots" in the scene (called pacdot in my script). This script is attached to a gameobect called placer which moves round the...
View ArticleHow to make Object X spawn when there're no more Objects tagged "XYZ" in scene?
Hey there, I'm trying to come up with a simple script that basically searches for objects in the current scene that are given a certain tag. If those objects still exist, the script continues simply...
View ArticleHow to get around hard-coded string in Unity?
Most of the strings in Unity are hard-coded. For example, Button "Fire1" I don't like that we hard code the string "Fire1" inside the script directly. One day, I might change the Project Settings of...
View ArticleTag Editor is all grayed out
I'm using Unity 5.5.0xb1 on Ubuntu 16.04 My problem is that I can't edit nor create tags. So does anyone have any idea why it's happening or anyone who faced this before? Here's a screenshot below:...
View ArticleCan't tag prefab with a string
Hi, I'm trying to add a simple string tag to my prefabs: if file name suffix is "_NC", i want to add the tag "Choose". I looked online and so that all I have to do is prefab.tag, So I wrote the...
View Article