// Update is called once per frame
	void Start () {
		if (fromAesthetic) {
			string[] aux = attributesInput;
			attributesInput = attributesOutput;
			attributesOutput = aux;
		}

		int numAttrs = attributesInput.Length;
		int numTerms = termLinguistics.Length;

		questionState = new int[numAttrs];

		fuzzyQuestionary = new FuzzyQuestionary();
	}
예제 #2
0
    // Update is called once per frame
    void Start()
    {
        if (fromAesthetic)
        {
            string[] aux = attributesInput;
            attributesInput  = attributesOutput;
            attributesOutput = aux;
        }

        int numAttrs = attributesInput.Length;
        int numTerms = termLinguistics.Length;

        questionState = new int[numAttrs];

        fuzzyQuestionary = new FuzzyQuestionary();
    }