Unity-Technologies / HLODSystem

845 stars 138 forks source link

Change ICustomLoader interface #104

Closed JangkyuSeo closed 2 years ago

JangkyuSeo commented 2 years ago

Purpose of this PR

Change ICustomLoader interface to make it easier to edit

Before

        public interface ICustomLoader
        {
            public AsyncOperationHandle<GameObject> CustomLoad(object key);
            public void CustomUnload(AsyncOperationHandle<GameObject> handle);
        }

After

        public interface ICustomLoader
        {
            public void CustomLoad(string key, Action<GameObject> loadDoneAction);
            public void CustomUnload(string key);
        }

Release Notes

Change ICustomLoader interface to make it easier to edit


Testing status

Manual


Overall Product Risks

Technical Risk: Low

Halo Effect: Low


Comments to reviewers