public TextPrinterMetadata()
 {
     Implementation = typeof(UITextPrinter).AssemblyQualifiedName;
     Loader         = new ResourceLoaderConfiguration {
         PathPrefix = TextPrintersConfiguration.DefaultPathPrefix
     };
     Pivot = new Vector2(.5f, .5f);
 }
Beispiel #2
0
 public CharacterMetadata()
 {
     Implementation = typeof(SpriteCharacter).AssemblyQualifiedName;
     Loader         = new ResourceLoaderConfiguration {
         PathPrefix = CharactersConfiguration.DefaultPathPrefix
     };
     Pivot = new Vector2(.5f, .0f);
 }
 public BackgroundMetadata()
 {
     Implementation      = typeof(SpriteBackground).FullName;
     LoaderConfiguration = new ResourceLoaderConfiguration {
         PathPrefix = BackgroundsConfiguration.DefaultBackgroundsPathPrefix
     };
     Pivot = new Vector2(.5f, .5f);
 }
Beispiel #4
0
 public ScriptLoader (ResourceLoaderConfiguration loaderConfig, ResourceProviderManager providerManager, LocalizationManager localeManager)
     : base(loaderConfig, providerManager, localeManager) { }