Advertisement
Guest User

Untitled

a guest
May 22nd, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. #![enable(implicit_some)]
  2. (
  3. entities: [
  4. (
  5. data: Sheet(
  6. texture: File("assets/out.png", (
  7. "IMAGE", (
  8. sampler_info: (
  9. min_filter: Nearest,
  10. mag_filter: Nearest,
  11. mip_filter: Nearest,
  12. wrap_mode: (Tile, Tile, Tile),
  13. lod_bias: (0),
  14. lod_range: (
  15. start: ( 0 ),
  16. end: ( 8000 ),
  17. ),
  18. comparison: None,
  19. border: (0),
  20. anisotropic: Off,
  21. ),
  22. )
  23. )),
  24. sprites: [
  25. List((
  26. texture_width: 400,
  27. texture_height: 360,
  28. sprites: [
  29. //...
  30. ],
  31. ))
  32. ]
  33. )
  34. )
  35. ]
  36. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement