Skip to content

Commit

Permalink
Version 2.1: Fix exporting 3D models and remove unused function
Browse files Browse the repository at this point in the history
  • Loading branch information
n0samu committed Nov 1, 2023
1 parent bb9bfca commit 40ffbe7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
Tools/
Xtras/
Exports/
*.exe
Binary file modified DirectorCastRipper.dir
Binary file not shown.
9 changes: 2 additions & 7 deletions Export.ls
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ on exportFlash flashMember, basePath
end

on exportShockwave3d shockwave3dMember, basePath
-- If we don't make sure the model is loaded, we might get a blank file!
preLoadMember(shockwave3dMember)
savew3d(shockwave3dMember, basePath & ".w3d")
return 0
end
Expand Down Expand Up @@ -551,13 +553,6 @@ on initExport
if exportOptions.getaProp(#dismissDialogs) then runAutoclicker()
end

on nextInternalCast num
repeat with i = (num + 1) to the number of castLibs
if isInternalCast(castLib i) then return i
end repeat
return 0
end
-- Avoid processing the same external castLib multiple times
on shouldSkip castLibRef
global fileFolders
Expand Down

0 comments on commit 40ffbe7

Please sign in to comment.