Fixed: #2275 - Export to FlashDevelop - framerate setting

This commit is contained in:
Jindra Petřík
2024-08-13 20:06:15 +02:00
parent 9b37aa1589
commit e499fc57a1
2 changed files with 3 additions and 1 deletions

View File

@@ -86,7 +86,7 @@ public class SwfFlashDevelopExporter {
+ " <movie outputType=\"Application\" />\n"
+ " <movie input=\"\" />\n"
+ " <movie path=\"" + simpleName + ".swf\" />\n"
+ " <movie fps=\"30\" />\n"
+ " <movie fps=\"" + doubleToString(swf.frameRate) + "\" />\n"
+ " <movie width=\"" + doubleToString(swf.displayRect.getWidth() / SWF.unitDivisor) + "\" />\n"
+ " <movie height=\"" + doubleToString(swf.displayRect.getHeight() / SWF.unitDivisor) + "\" />\n"
+ " <movie version=\"" + swf.version + "\" />\n"