I just started using Away3D. I'm using a shell script to call the
mxmlc compiler directly and I'm using emacs to edit all source files.
Everything builds fine, but I get the following warning:
away3d-read-only/fp10/Away3D/src/away3d/animators/data/
PathDebug.as(30): col: 15 Warning: variable '_matspherecontrol' has no
type declaration.
private var _matspherecontrol
Changing this line to:
private var _matspherecontrol:BitmapMaterial;
fixes this. I tried generating a patch using svn diff, but all I got
was:
Index: fp10/Away3D/src/away3d/animators/data/PathDebug.as
===================================================================
--- fp10/Away3D/src/away3d/animators/data/PathDebug.as (revision 2195)
+++ fp10/Away3D/src/away3d/animators/data/PathDebug.as (working copy)
@@ -27,7 +27,7 @@
I'm not certain why my change didn't show up in the diff output, but
I'm guessing it has to do with the formatting of the file, such as the
^M and related problems. So, my two questions are:
1) How do I submit the above patch?
2) Why didn't my svn diff work as expected?
Thanks,
Howard