Jacob Gustafson
d59a4608a6
Use the new project name and avoid a URL redirect (related to issue #397 ).
2022-06-03 02:13:49 -04:00
Marc Gilleron
687beab897
Fix default noise properties
2022-06-02 20:58:06 +01:00
Marc
2cd158ff3b
Merge pull request #395 from rcorre/fix_linux_warning
...
Avoid unused variable warning.
2022-05-31 22:31:11 +01:00
Ryan Roden-Corrent
26dbd13f3a
Avoid unused variable warning.
...
gcc warns:
```
modules/voxel/streams/region/region_file.cpp: In function 'bool save_header(FileAccess*, uint8_t, const VoxelRegionFormat&, const std::vector<VoxelRegionBlockInfo>&)':
832
modules/voxel/streams/region/region_file.cpp:101:9: error: unused variable 'blocks_begin_offset' [-Werror=unused-variable]
833
101 | size_t blocks_begin_offset = f->get_position();
const size_t blocks_begin_offset = f.get_position();
```
I noticed this while trying to build export templates using github
actions, as the godot actions treat warnings as errors by default:
https://github.com/rcorre/godot/runs/6617207436
2022-05-26 18:29:44 -04:00
Marc Gilleron
b27976c5f4
Merge branch 'master' of https://github.com/Zylann/godot_voxel
2022-05-23 21:20:20 +01:00
Marc Gilleron
1cb030ede6
Fix 32-voxel mesh block size in VoxelLodTerrain
2022-05-23 21:13:21 +01:00
Marc Gilleron
6ed48654f4
Fix nodes deletion in graph editor
2022-05-23 20:47:01 +01:00
Marc Gilleron
dbd07f3b6c
Update supporters
2022-05-23 00:38:23 +01:00
Marc Gilleron
6c47c177ab
Moved Godot config access to module initialization
2022-05-23 00:13:37 +01:00
Marc Gilleron
acbc52e717
Unnecessary forward-declaration
2022-05-22 22:25:55 +01:00
Marc
e376bad7d4
Merge pull request #390 from rcorre/fixdoc
...
Fix triplanar mapping doc link.
2022-05-22 22:25:25 +01:00
Ryan Roden-Corrent
2727f11ffd
Fix triplanar mapping doc link.
2022-05-22 17:07:54 -04:00
Marc Gilleron
6fd56e2054
Removed intermediate struct
2022-05-22 22:00:21 +01:00
Marc Gilleron
863c9a81b6
Unused enum
2022-05-22 21:20:54 +01:00
Marc Gilleron
7bb683552d
Added basic stair climbing to VoxelBoxMover
2022-05-22 20:34:22 +01:00
Marc Gilleron
b64532c0ea
Update supporters
2022-05-22 20:08:28 +01:00
Marc Gilleron
b9c9b2bcee
Schedule tasks more directly, remove VoxelServer data copies
2022-05-22 00:18:58 +01:00
Marc Gilleron
f899ae8fbb
Added option to show octree grid in editor, now off by default
2022-05-21 22:00:01 +01:00
Marc Gilleron
6aad611215
Moved methods outside Vector3f
2022-05-21 21:12:16 +01:00
Marc Gilleron
4e1c7cf485
Moved trilinear interpolation to funcs and made position template
2022-05-21 20:39:02 +01:00
Marc Gilleron
f03a0a0253
Renamed sign
function to clarify what it does compared to a standard version
2022-05-21 20:38:34 +01:00
Marc Gilleron
28fe3365e7
Added info about LOD
2022-05-18 23:31:37 +01:00
Marc Gilleron
748f73ed5e
Update changelog
2022-05-18 23:31:11 +01:00
Marc Gilleron
6de7ce4d90
Merge branch 'master' of https://github.com/Zylann/godot_voxel
2022-05-18 21:49:19 +01:00
Marc Gilleron
9588b73128
Auto-create resource params in new graph nodes
2022-05-18 21:33:26 +01:00
Marc
312a301eda
Merge pull request #389 from duchainer/patch-2
...
Cross-compiler compatibility: const -> constexpr
2022-05-18 21:30:02 +01:00
Raphaël Duchaîne
f9690542b2
Cross-compiler compatibility: const -> constexpr
...
As suggested in https://github.com/Zylann/godot_voxel/issues/387
This allowed 2 full Mac builds using these commands:
```
scons platform=osx arch=x86_64 --jobs=$(sysctl -n hw.logicalcpu) warnings=all tools=yes tests=no target=release_debug production=yes
```
```
scons platform=osx arch=arm64 --jobs=$(sysctl -n hw.logicalcpu) warnings=all tools=yes tests=no target=release_debug production=yes voxel_fast_noise_2=false
```
-
( Also after having the VulkanSDK like mentioned here[1] and after deleting the `denoise` module which doesn't like ARM64)
[1]: https://github.com/godotengine/godot/issues/57622#issuecomment-1120486153
2022-05-18 16:15:14 -04:00
Marc Gilleron
df25723b20
Initialize variable
2022-05-18 20:15:23 +01:00
Marc Gilleron
008c38bb6b
Fix some signedness warnings
2022-05-17 23:10:18 +01:00
Marc Gilleron
602ae1ea95
Don't crash if no materials are specified
2022-05-17 23:10:11 +01:00
Marc Gilleron
fa027cbe4e
Allow to specify which surfaces have collision
2022-05-17 22:12:54 +01:00
Marc Gilleron
fef56aad36
Merge branch 'master' of https://github.com/Zylann/godot_voxel
2022-05-17 19:45:12 +01:00
Marc Gilleron
4f862722ae
Removed usages of Map
2022-05-17 19:44:58 +01:00
Marc Gilleron
3026f6b5a3
Fix tests compilation
2022-05-17 19:34:31 +01:00
Marc
63b94ae8db
Merge pull request #384 from duchainer/patch-1
...
DOC: Make it clearer where to look on building mismatch
2022-05-16 23:11:13 +01:00
Marc Gilleron
12862a46d0
Changes to blocky materials
...
- They are now defined in each model
- VoxelTerrain no longer has material slots, except for a global override
- Models can have up to 2 materials instead of only one
2022-05-16 22:55:06 +01:00
Marc Gilleron
d5aaef772d
Fix MkDocs formatting not picking up the list
2022-05-16 22:50:16 +01:00
Marc Gilleron
aad2f0df2d
Fix transition meshes not removed from the world
2022-05-16 22:07:57 +01:00
Marc Gilleron
8f243f6121
Fix removal of scene instances
2022-05-16 20:23:52 +01:00
Marc Gilleron
443cb4b55d
Replace "Spatial" with new name "Node3D"
2022-05-16 20:20:08 +01:00
Marc Gilleron
3632bc5f91
Make it clear the documented API is the scripting API
2022-05-16 20:19:34 +01:00
Marc Gilleron
f4ebfac9a5
Add info about assigning noise properties
2022-05-15 23:29:34 +01:00
Marc Gilleron
34b9b3c321
Updated supporters
2022-05-15 21:01:38 +01:00
Marc Gilleron
09d0be21e2
Remove remaining usages of HashMap
2022-05-14 19:38:39 +01:00
Marc Gilleron
4d8cffe442
Fix non-constant accessor
2022-05-14 16:12:26 +01:00
Marc Gilleron
4f7f0cb3a3
Unnecessary pointer
2022-05-14 16:12:04 +01:00
Marc Gilleron
d440b4f0d8
Wrap debug code
2022-05-14 16:11:44 +01:00
Raphaël Duchaîne
eb4591a512
Make it clearer where to look on mismatch
2022-05-13 17:49:46 -04:00
Marc
9afdd6c4e8
Merge pull request #382 from Trey2k/master
...
Fixed issues caused by changes to HashMap in godot
2022-05-13 21:19:50 +01:00
Trey M
55533b3542
removed unused key and redundent lookup
2022-05-13 15:04:47 -05:00