void Update() {
if(Input.GetMouseButton(0)) {
transform.localScale = Vector2.Lerp(transform.localScale, scale1, 20.0f * Time.deltaTime);
}
else {
transform.localScale = new Vector2(6, 6);
}
GoldDisplay.text = "Тапов: " + taps;
if (Input.GetMouseButtonDown(0)) {
taps -= 1;
if (taps == 0) {
beh.score_1++;
}
}
}
Virtualization extension requirements
In addition to the development environment requirements, your computer's processor must support one of the following virtualization extensions technologies:
- Intel Virtualization Technology (VT, VT-x, vmx) extensions
- AMD Virtualization (AMD-V, SVM) extensions
Most modern processors support these virtualization extensions. If you're not sure whether your processor supports these extensions, check the specifications for your processor on the manufacturer's site. If your processor doesn't support one of these extensions, then you can't use VM acceleration.
Ошибка нехватки памяти: Не удалось выделить 83886328 байтов с 25165824 свободными байтами и 46 МБ до OOM, целевой размер 245232608, предел роста 268435456
android:scaleType="centerCrop"
При этом activity не должна пересоздаваться (важно)Хорошо подумайте, так ли это важно, потому что для смены темы без пересоздания активити прийдется писать много кода.