Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

inFusion default initializer export to MSE #254

Closed
seandenigris opened this issue Aug 3, 2015 · 3 comments
Closed

inFusion default initializer export to MSE #254

seandenigris opened this issue Aug 3, 2015 · 3 comments

Comments

@seandenigris
Copy link
Contributor

Originally reported on Google Code with ID 254

When dealing with the following Java class, inFusion should export the code in the initializer
to 
MSE.

class KeyMapping {

    static final KeyMapping keyMapping1 =
        new KeyMapping(KeyEvent.VK_LEFT,
                       KeyEvent.VK_RIGHT,
                       KeyEvent.VK_UP,
                       KeyEvent.VK_SPACE);

    static final KeyMapping keyMapping2 =
        new KeyMapping(KeyEvent.VK_X,
                       KeyEvent.VK_V,
                       KeyEvent.VK_D,
                       KeyEvent.VK_ALT);

    int left, right, thrust, fire;

    KeyMapping(int k_left, int k_right, int k_thrust, int k_fire) {
        left   = k_left;
        right  = k_right;
        thrust = k_thrust;
        fire   = k_fire;
    }
}

Reported by tudor.girba on 2009-12-10 08:49:53

@seandenigris
Copy link
Contributor Author

Reported by tudor.girba on 2011-04-12 07:38:16

  • Labels added: Component-ExternalTools
  • Labels removed: Component-Tools

@seandenigris
Copy link
Contributor Author

Reported by tudor.girba on 2011-05-08 21:15:19

@seandenigris
Copy link
Contributor Author

Reported by tudor@tudorgirba.com on 2014-04-19 12:33:37

  • Status changed: WontFix

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant