mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-25 16:25:33 +00:00
FLA export - Accessibility not yet complete - WIP
This commit is contained in:
@@ -462,7 +462,7 @@ public class TraitClass extends Trait implements TraitWithSlot {
|
||||
}
|
||||
}
|
||||
|
||||
if (convertData.ignoreAccessibility) {
|
||||
if (convertData.ignoreAccessibility && false /*WIP*/) {
|
||||
if (constructorBody.convertedItems != null) {
|
||||
for (int j = 0; j < constructorBody.convertedItems.size(); j++) {
|
||||
GraphTargetItem ti = constructorBody.convertedItems.get(j);
|
||||
|
||||
@@ -2826,6 +2826,9 @@ public class XFLConverter {
|
||||
|
||||
|
||||
private static Map<String, String> getRootAccessibilityFromPack(AbcIndexing abcIndex, ScriptPack pack) {
|
||||
if (true) { //WIP
|
||||
return new HashMap<>();
|
||||
}
|
||||
int swfVersion = -1;
|
||||
if (pack.getOpenable() instanceof SWF) {
|
||||
swfVersion = ((SWF) pack.getOpenable()).version;
|
||||
@@ -2911,6 +2914,9 @@ public class XFLConverter {
|
||||
|
||||
|
||||
private static Map<String, Map<String, String>> getAccessibilityFromPack(AbcIndexing abcIndex, ScriptPack pack) {
|
||||
if (true) { //WIP
|
||||
return new HashMap<>();
|
||||
}
|
||||
int swfVersion = -1;
|
||||
if (pack.getOpenable() instanceof SWF) {
|
||||
swfVersion = ((SWF) pack.getOpenable()).version;
|
||||
|
||||
Reference in New Issue
Block a user