halfzebra / elm-aframe

:sunglasses: A-Frame bindings for Elm
http://package.elm-lang.org/packages/halfzebra/elm-aframe/latest
29 stars 12 forks source link

Fix animation repeat value type from Int to String #10

Closed SebastianMuszynski closed 7 years ago

SebastianMuszynski commented 7 years ago
  1. Corrected some typos.
  2. Animation repeat attribute's value is expected to be Int and because of that it's not possible to set "indefinite" value. The argument type should be String.

As a workaround I have used:

attribute "repeat" "indefinite"
halfzebra commented 7 years ago

@SebastianMuszynski thanks for contributing! 👍

Totally makes sense!