multilineString.wrl 431 B

123456789101112131415161718192021222324
  1. #VRML V2.0 utf8
  2. WorldInfo { title "Multi-line string literal test" }
  3. NavigationInfo { type "EXAMINE" }
  4. Background { skyColor [ 0.2 0.2 0.3 ] }
  5. Transform {
  6. translation 0 0 0
  7. children [
  8. Shape {
  9. appearance Appearance {
  10. material Material { diffuseColor 0.2 0.8 0.4 }
  11. }
  12. geometry Box { size 1 1 1 }
  13. }
  14. ]
  15. }
  16. DEF S Script {
  17. url "javascript:
  18. function touched(value) {
  19. console.log('Box was touched at ' + value);
  20. }
  21. "
  22. }
粤ICP备19079148号