terrain.js 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. module.exports = {
  2. classes: {
  3. cc: {
  4. Terrain: {
  5. properties: {
  6. _asset: {
  7. tooltip: 'The terrain asset.',
  8. },
  9. effectAsset: {
  10. tooltip: 'The terrain effect asset.',
  11. },
  12. lightmapInfos: {
  13. tooltip: 'The terrain info.',
  14. },
  15. receiveShadow: {
  16. tooltip: 'Receive shadow.',
  17. },
  18. useNormalMap: {
  19. tooltip: 'Use normal map.',
  20. },
  21. usePBR: {
  22. tooltip: 'Use pbr material.',
  23. },
  24. lodEnable: {
  25. tooltip: 'Enable lod.',
  26. },
  27. LodBias: {
  28. tooltip: 'Lod bias.',
  29. },
  30. },
  31. },
  32. },
  33. },
  34. };