Uses of Interface
com.xebisco.yield.manager.FileIOManager
Packages that use FileIOManager
Package
Description
-
Uses of FileIOManager in com.xebisco.yield
Methods in com.xebisco.yield that return FileIOManagerModifier and TypeMethodDescriptionOnDemandTexture.ReturnIOManager.ioManager()Returns theFileIOManagerinstance. -
Uses of FileIOManager in com.xebisco.yield.defaults
Classes in com.xebisco.yield.defaults that implement FileIOManager -
Uses of FileIOManager in com.xebisco.yield.font
Constructors in com.xebisco.yield.font with parameters of type FileIOManagerModifierConstructorDescriptionFont(String path, double size, FontManager fontManager, FileIOManager ioManager) Constructs a new Font object. -
Uses of FileIOManager in com.xebisco.yield.manager
Methods in com.xebisco.yield.manager with parameters of type FileIOManagerModifier and TypeMethodDescriptionAudioManager.loadAudio(AudioPlayer audio, FileIOManager ioManager) This function loads an audio file.FontManager.loadFont(Font font, FileIOManager ioManager) The function loads a font object.TextureManager.loadSpritesheetTexture(SpritesheetTexture spritesheetTexture, Vector2D size, FileIOManager ioManager) TextureManager.loadTexture(AbstractTexture texture, Vector2D size, FileIOManager ioManager) voidAudioManager.unloadAudio(AudioPlayer audio, FileIOManager ioManager) The function unloads an audio clip from an audio player.voidFontManager.unloadFont(Font font, FileIOManager ioManager) The function unloads a specified font.voidTextureManager.unloadSpritesheetTexture(SpritesheetTexture spritesheetTexture, FileIOManager ioManager) voidTextureManager.unloadTexture(AbstractTexture texture, FileIOManager ioManager) voidGraphicsManager.updateWindowIcon(Texture icon, FileIOManager ioManager) This function updates the icon the window using a texture. -
Uses of FileIOManager in com.xebisco.yield.platform
Methods in com.xebisco.yield.platform that return FileIOManagerModifier and TypeMethodDescriptionApplicationPlatform.ioManager()Get the file input/output manager instance. -
Uses of FileIOManager in com.xebisco.yield.texture
Methods in com.xebisco.yield.texture that return FileIOManagerModifier and TypeMethodDescriptionSpritesheetTexture.getIoManager()Returns theFileIOManagerresponsible for reading and writing files.Texture.getIoManager()Returns theFileIOManagerinstance that is responsible for handling file I/O operations.Constructors in com.xebisco.yield.texture with parameters of type FileIOManagerModifierConstructorDescriptionSpritesheetTexture(String path, TextureManager textureManager, FileIOManager ioManager) Constructs aSpritesheetTexturefrom a given path andTextureManager.Texture(Object imageRef, Vector2D size, String path, TextureFilter filter, TextureManager textureManager, FileIOManager ioManager) Constructs a newTextureobject from an image reference and size.Texture(String path, TextureFilter filter, TextureManager textureManager, FileIOManager ioManager) Constructs a newTextureobject from a file path and texture filter.