You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When initializing an application, most users will probably make a call to add_default_plugins(). This call results in the immediate registration and initialization of all default plugins, and there is no way to unregister or modify the plugin after the fact. It should be possible for users to do any of the following actions:
opt out of one or more default plugins, without taking on the responsibility of registering all of the default plugins. (what happens if we add a new default plugin and they forget to add it)
change the settings of a default plugin, without taking on the responsibility of registering all of the default plugins. (ex: configuring the default render graph settings in RenderPlugin)
Ideally whatever solution we choose applies to any set of plugins, not just the default ones. It might even be worth formalizing "plugin groups".
The text was updated successfully, but these errors were encountered:
the `undecorate_regex` captures part of the ansi color codes and eats
them in error reports.
updated the regex to exclude ansi codes from matched names.
fixesbevyengine#64
When initializing an application, most users will probably make a call to
add_default_plugins()
. This call results in the immediate registration and initialization of all default plugins, and there is no way to unregister or modify the plugin after the fact. It should be possible for users to do any of the following actions:RenderPlugin
)Ideally whatever solution we choose applies to any set of plugins, not just the default ones. It might even be worth formalizing "plugin groups".
The text was updated successfully, but these errors were encountered: