Refering to a Class without it initialization
Hello guys I'm very sorry for that silly question but I seriously dont understand how it works in C#, but I realy like this feature to implement. There are few freameworks like for example Facebook...
View ArticleVarying number of variables depending on power type?
So I am making a game where the player has a 'player class' (like Call of Duty Online but the game isn't a FPS): [System.Serializable] // Launch attributes public class LaunchTypeObj : ScriptableObject...
View ArticleConvert SerializedProperty to Custom Class
Hi, I struggling with SerilizedProperty. Let's say I have class [System.Serializable] public class ItemRandom { public bool test = false; public int test2 = 4; } And I want to save them like preset in...
View ArticleHow to declare multiple variables using a for loop in class declaration?
I've searched the web for an answer to this question but I can't find anything, I'm not even sure it's possible to do in C#. What I want to do is, at class declaration, use a for or a while (or...
View ArticleRuntime Error IOS AOT Only
This Line IOS Runtime Error! -> Dictionary dictionary = new Dictionary(); IOS XCode AOT Only..... Have you ever json library problem? What is the cause and solution? Help me please IOI
View ArticleWill calling and instance of classA, from classA, repeatedly, cause a stack...
Suppose I have a class in C#. This class will be within another class, like this: using UnityEngine; using System.Collections; public class mainClass : MonoBehaviour { //the class in question public...
View ArticleArray of Objects of a Class
I would assume this is relatively straightforward. I just switched over from UnityScript to C#, and I have to admit it is largely superior, even in the fact that it very tangibly helps you understand...
View ArticleC# finding gameobject that created this class, and do I need to clear them?
Hello! I'm learning now OOP. And I got some questions, about how unity3d works with classes. First situation: I'm having a GameObject that has a script: **Bot Script:** public class Bot : MonoBehaviour...
View ArticleHow do I check if a derived class is a certain class?
For example, I have ScriptableObject A and then 3derived class A1 A2 A3 There is also Runtime Class B and derived from it, B1 and B2 B1 can only use A1 and A3 B2 can only use A2 And finally, there is...
View ArticleHow do I check if a derived class is a certain class?
For example, I have ScriptableObject A and then 3derived class A1 A2 A3 There is also Runtime Class B and derived from it, B1 and B2 B1 can only use A1 and A3 B2 can only use A2 And finally, there is...
View ArticleHow do I check if a derived class is a certain class?
For example, I have ScriptableObject A and then 3derived class A1 A2 A3 There is also Runtime Class B and derived from it, B1 and B2 B1 can only use A1 and A3 B2 can only use A2 And finally, there is...
View ArticlePrivate Array in custom Class behaving Public
Hey Unity peeps, I have a custom class that can have any number of instances generated at runtime. I am building a very literal "snapping" matrix (multi-dimensional, jagged array) specific to each...
View ArticleArrays and Classes javascript
Here is a class *Card* and a 2d array *aGrid*. The 2d array aGrid is set to `aGrid = new Card[4,4]`; it looks like I am making it an instance of the Card class and an array at the same time. How does...
View ArticleArrays and Classes Javascript
Here is a class Card and a 2d array aGrid. The 2d array aGrid is set to `aGrid = new Card[4,4];` it looks like it's made into an instance of the Card class and an array at the same time. How does this...
View Articlereplacing instance of class from within itself
Hello Friends, This one is a bit weird I feel :) I have a class which defines goals for a level. Mostly checks on multiple counters. As the system allows for quests to be chained, every LevelGoal has a...
View ArticleAdd a extension method to the class Application
I would like to create a extension method call ReloadLevel() for the class Application. I tried this: public static void ReloadLevel(this Application app){ app.LoadLevel(app.loadedLevel); } It gives me...
View ArticleWhy is my MonoBehaviour never being deleted?
I discovered this problem because I have a script that hooks to a static event from another class. And noticed that after reloading a level, the event delegate function was being called TWICE; once for...
View ArticleIs there anyway to disable clients GameObject instance from Server or...
I want to know how to disable object instantiated on client side from server and vice versa.
View ArticleInstance of a class, adding it to a List
Hello ! I'm new to unity, but not that new to C# and I want to ask a really average and regular question which I don't know how to search after. I made a class called ConsumableItem.cs. using...
View Article