Giter Club home page Giter Club logo

bulletmli's People

Contributors

noxalus avatar

Stargazers

 avatar

Watchers

 avatar

bulletmli's Issues

Give a variable as a parameter of an actionRef doesn't seem to work

<?xml version="1.0" ?>
<!DOCTYPE bulletml SYSTEM "http://www.asahi-net.or.jp/~cs8k-cyu/bulletml/bulletml.dtd">
<bulletml xmlns="http://www.asahi-net.or.jp/~cs8k-cyu/bulletml">

  <action label="top">
    <fire>
      <bulletRef label="bullet-A">
        <param>1</param>
      </bulletRef>
    </fire>
  </action>

  <bullet label="bullet-A">
    <direction type="absolute">0</direction>
    <speed>$1</speed>
    <actionRef label="A">
      <param>$1</param>
    </actionRef>
  </bullet>

  <action label="A">
    <wait>80 / $1</wait>
    <changeDirection>
      <direction type="relative">180</direction>
      <term>100 / $1</term>
    </changeDirection>
    <wait>125 / $1</wait>
    <changeDirection>
      <direction type="relative">90</direction>
      <term>0</term>
    </changeDirection>
    <wait>60 / $1</wait>
    <changeDirection>
      <direction type="relative">180</direction>
      <term>0</term>
    </changeDirection>
    <wait>60 / $1</wait>
    <changeDirection>
      <direction type="relative">90</direction>
      <term>0</term>
    </changeDirection>
    <wait>50 / $1</wait>
    <changeSpeed>
      <speed>0</speed>
      <term>0</term>
    </changeSpeed>
  </action>
</bulletml>

Sequence type issue for direction tag with multiple loops

<?xml version="1.0" ?>
<!DOCTYPE bulletml SYSTEM "bulletml.dtd">
<bulletml>
  <action label="top1">
    <repeat>
      <times>0</times>
      <action>
        <fire>
          <bullet>
            <direction type="sequence">-5</direction>
            <speed>1</speed>
          </bullet>
        </fire>
        <wait>1</wait>
      </action>
    </repeat>
  </action>
  <action label="top2">
    <repeat>
      <times>0</times>
      <action>
        <fire>
          <bullet>
            <direction type="sequence">5</direction>
            <speed>1</speed>
          </bullet>
        </fire>
        <wait>1</wait>
      </action>
    </repeat>
  </action>
</bulletml>

Should start 2 spirals in the opposite direction.

Sequence type direction issue with child <fire> tag located into <action> tag (from a <bullet> tag)

<?xml version="1.0" ?>
<!DOCTYPE bulletml SYSTEM "bulletml.dtd">
<bulletml>
  <action label="top">
    <repeat>
      <times>8</times>
      <action>
        <fire>
          <bullet>
            <direction type="sequence">45</direction>
            <speed>10</speed>
            <action>
              <changeDirection>
                <direction type="relative">36</direction>
                <term>100</term>
              </changeDirection>
              <wait>100</wait>
              <vanish />
              <fire> <!-- <-- Remove this <fire> will make the script work as expected -->
                <bullet />
              </fire>
            </action>
          </bullet>
        </fire>
      </action>
    </repeat>
  </action>
</bulletml>

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.