Example #1
0
    public void InitializeMyThings(AnimalCentralCommand argbh, HotelFloorsManager argfloors, CameraPov argCam, InteractionCentral argBellhopCocation, DeliverySessionManager argSessionMNGR, StoryTextGenerator argStoryTExtGen)

    {
        _sessionMNGR = argSessionMNGR;
        _sessionMNGR.Init();
        _BellhopPos    = argBellhopCocation;
        _bellHop       = argbh;
        _floorsmngr    = argfloors;
        _cam           = argCam;
        _ElevatorDoors = ElevatorDoorsMasterControl.Instance;

        _StoryTextGen = argStoryTExtGen;
        _StoryTextGen.InitMyRefs(_floorsmngr);
    }
Example #2
0
    public void InitAllPointsAccordingToCurFloor(HotelFloor argHF, AnimalCentralCommand argBEllHop, SequenceType argSequenceType, int argWrongAnswers)
    {
        _Bellhop         = argBEllHop;
        _Dweller         = argHF.FloorDweller;
        _exhangeI        = argHF.Greetings_HF;
        _danceI          = argHF.Dance_HF;
        _spawnI          = argHF.SpawnPoint_HF;
        _mainRoomActionI = argHF.Mainaction_HF;
        _outDoorsPlace   = argHF.OutDoorsPoint.transform;

        _Bellhop.ActivateAgent();
        //_Dweller.ActivateAgent();

        Make_newSystem(argSequenceType, argWrongAnswers);
    }