README.txt.diff 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. 1,84c1,26
  2. < Minetest Game mod: doors
  3. < ========================
  4. < See license.txt for license information.
  5. <
  6. < Authors of source code
  7. < ----------------------
  8. < Originally by PilzAdam (MIT)
  9. <
  10. < Modified by BlockMen (MIT): Added sounds, glass doors (glass, obsidian glass) and trapdoor.
  11. <
  12. < Modified by sofar (sofar@foo-projects.org) (MIT):
  13. < Added Steel trapdoor.
  14. < Re-implemented most of the door algorithms, added meshes, UV wrapped texture.
  15. < Added doors API to facilitate coding mods accessing and operating doors.
  16. < Added Fence Gate model, code, and sounds.
  17. <
  18. < Various Minetest developers and contributors (MIT)
  19. <
  20. <
  21. < Authors of media (textures)
  22. < ---------------------------
  23. < Following textures created by Fernando Zapata (CC BY-SA 3.0):
  24. < door_wood.png
  25. < door_wood_a.png
  26. < door_wood_a_r.png
  27. < door_wood_b.png
  28. < door_wood_b_r.png
  29. <
  30. < Following textures created by BlockMen (CC BY-SA 3.0):
  31. < door_trapdoor.png
  32. < door_obsidian_glass_side.png
  33. <
  34. < Following textures created by celeron55 (CC BY-SA 3.0):
  35. < door_glass_a.png
  36. < door_glass_b.png
  37. <
  38. < Following textures created by PenguinDad (CC BY-SA 4.0):
  39. < door_glass.png
  40. < door_obsidian_glass.png
  41. <
  42. < Following textures created by sofar (CC-BY-SA-3.0):
  43. < doors_trapdoor_steel.png
  44. < doors_trapdoor_steel_side.png
  45. < door_trapdoor_side.png
  46. <
  47. < Obsidian door textures by red-001 based on textures by Pilzadam and BlockMen (CC BY-SA 3.0):
  48. < door_obsidian_glass.png
  49. <
  50. < Glass door textures by red-001 based on textures by celeron55 (CC BY-SA 3.0):
  51. < door_glass.png
  52. <
  53. < All other textures (created by PilzAdam) (CC BY-SA 3.0):
  54. <
  55. < Door textures were converted to the new texture map by sofar, paramat and
  56. < red-001, under the same license as the originals.
  57. <
  58. <
  59. < Authors of media (models)
  60. < -------------------------
  61. < Door 3d models by sofar (CC-BY-SA-3.0)
  62. < - door_a.obj
  63. < - door_b.obj
  64. < Fence gate models by sofar (CC-BY-SA-3.0)
  65. < - fencegate_open.obj
  66. < - fencegate_closed.obj
  67. <
  68. <
  69. < Authors of media (sounds)
  70. < -------------------------
  71. < Opening-Sound created by CGEffex (CC BY 3.0), modified by BlockMen
  72. < door_open.ogg
  73. < Closing-Sound created by bennstir (CC BY 3.0)
  74. < door_close.ogg
  75. < fencegate_open.ogg:
  76. < http://www.freesound.org/people/mhtaylor67/sounds/126041/ - (CC0 1.0)
  77. < fencegate_close.ogg:
  78. < http://www.freesound.org/people/BarkersPinhead/sounds/274807/ - (CC-BY-3.0)
  79. < http://www.freesound.org/people/rivernile7/sounds/249573/ - (CC-BY-3.0)
  80. < Steel door sounds open & close (CC-BY-3.0) by HazMatt
  81. < - http://www.freesound.org/people/HazMattt/sounds/187283/
  82. < doors_steel_door_open.ogg
  83. < doors_steel_door_close.ogg
  84. < doors_glass_door_open.ogg, doors_glass_door_close.ogg:
  85. < https://www.freesound.org/people/SkeetMasterFunk69/sounds/235546/ (CC0 1.0)
  86. ---
  87. > Doors
  88. > =====================================================================
  89. > Main: PilzAdam, BlockMen
  90. > Lisc: MIT
  91. > Text: CC-0
  92. > Derivative of bas080 by jadedctrl
  93. > 3Dmo: MIT
  94. > By sofar
  95. > Audi: CC-BY-3.0
  96. > Derivative of CGEffect by BlockMen
  97. > door_open.ogg
  98. > By bennstir
  99. > door_close.ogg
  100. > By BarkersPinhead
  101. > By rivernile7
  102. > fencegate_close.ogg
  103. > By HazMatt
  104. > doors_steel_door_open.ogg
  105. > doors_steel_door_close.ogg
  106. > Audi: CC0
  107. > By mhtaylor67
  108. > fencegate_open.ogg
  109. > By SkeetMasterFunk69
  110. > doors_glass_door_open.ogg
  111. > doors_glass_door_close.ogg
  112. > Link: https://github.com/minetest/minetest_game