realitycollective / com.realitycollective.service-framework

The Service Framework package components for the Reality Collective. This package an extensible service framework to build highly performant components for your Unity projects.
https://service-framework.realitycollective.net
MIT License
8 stars 4 forks source link

Root ServiceProvidersProfile should not list Modules for selection #89

Closed FejZa closed 6 months ago

FejZa commented 6 months ago

Reality Collective - Service Framework Bug Report

Describe the bug

When registering services with the root profile it lists literally anything that is an IService. This dropdown should filter IServiceModule types and not list them as it does not make sense to register a module at root level.

SimonDarksideJ commented 6 months ago

This is a known issue, as the drop-down filters all classes implementing "IService" which also includes "IServiceModules", have not found a good workaround that does not break the filtering of "IServiceModules" for modules too.

Will have a look again.

FejZa commented 6 months ago

Fixed.