Ejemplo n.º 1
0
    private void Start()
    {
        Application.targetFrameRate = 60;
        babblesRemaining            = 90;
        switch (type)
        {
        case NARSType.NARS:
            LaunchNARS();
            break;

        case NARSType.ONA:
            LaunchONA();
            break;

        case NARSType.Python:
            LaunchPython();
            babblesRemaining = 30;
            break;

        default:
            break;
        }

        _sensorimotor = GetComponent <NARSSensorimotor>();
        _sensorimotor.SetNARSHost(this);
    }
Ejemplo n.º 2
0
 public void SetSensorimotor(NARSSensorimotor sensorimotor)
 {
     _sensorimotor = sensorimotor;
 }