RenderImage.UnloadModel C# (CSharp) Method

UnloadModel() public method

public UnloadModel ( ) : void
return void
    public void UnloadModel()
    {
        if (_model != null)
        {
            Object.Destroy(_model.gameObject);
            _model = null;
        }
        _rotating = 0;
    }