mirror of
https://github.com/Redot-Engine/redot-engine.git
synced 2025-12-06 07:17:42 -05:00
Add GIF file loading Add `ResourceFormatLoader` for `SpriteFrames` Add `ResourceFormatLoader` for `AnimatedTexture` Add `ImageFrames` resource for handling image sequence Add `ImageFramesLoader` for resource loading image sequences Add `ResourceFormatLoader` for `ImageFrames` Add GIF image load test assertions Add ImageFrames test cases
18 lines
791 B
XML
18 lines
791 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<class name="ImageFramesFormatLoader" inherits="RefCounted" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
|
|
<brief_description>
|
|
Base class to add support for specific image sequence formats.
|
|
</brief_description>
|
|
<description>
|
|
The engine supports multiple image sequence formats out of the box, but you can choose to implement support for additional image sequence formats by extending [ImageFramesFormatLoaderExtension].
|
|
</description>
|
|
<tutorials>
|
|
</tutorials>
|
|
<constants>
|
|
<constant name="FLAG_NONE" value="0" enum="LoaderFlags" is_bitfield="true">
|
|
</constant>
|
|
<constant name="FLAG_FORCE_LINEAR" value="1" enum="LoaderFlags" is_bitfield="true">
|
|
</constant>
|
|
</constants>
|
|
</class>
|