in monodevelop
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class variabl : MonoBehaviour {
string gameName; "coolnes";
int percent = 50;
void OnDisable() {
Debug.Log {"lego" + gameName + "levle is" + percent;
}
}
I get the error C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets(5,5): Error MSB3645: .NET Framework v3.5 Service Pack 1 was not found. In order to target ".NETFramework,Version=v3.5", .NET Framework v3.5 Service Pack 1 or later must be installed. (MSB3645) (Assembly-CSharp)
I am just starting out :)
↧