Script Machine does not work on Android

I have a script as simple as

using UnityEngine;
using UnityEngine.UI;

public class textchanger : MonoBehaviour
{
    public Text text;
    void Start()
    {
        text.text = "test";
    }

If I make precisely the same in Script Graph it runs fine in Editor but is not executed on Android devices.
Unity 2021.3.15f1 lts
Visual Scripting 1,7,8
Android SDK

Upgrade Visual Scripting to 1.8.0 and see if it helps. Should be available in newer Unity LTS releases, you can also force the upgrade by manually editing Package Manager’s manifest.json file where you change UVS version from 1.7.8 to 1.8.0.

1 Like