Example #1
0
    // Use this for initialization
    private void Start()
    {
        _colorManagementModel = GetComponent <ColorManagementSystemModel>();

        if (null == _colorManagementModel)
        {
            throw new MissingComponentException(
                      "ColorManagementSystemController.Start - can't get ColorManagementSystemModel component for _colorManagementModel");
        }
        SubscribeEvents();

        Init();
    }
	// Use this for initialization
	private void Start()
	{
		_colorManagementModel = GetComponent<ColorManagementSystemModel>();

		if (null == _colorManagementModel)
		{
			throw new MissingComponentException(
				"ColorManagementSystemController.Start - can't get ColorManagementSystemModel component for _colorManagementModel");
		}
		SubscribeEvents();

		Init();

	}