Adam Johnson
d38c96a2f1
Merge pull request #323 from H-uru/localsound-fix
...
Fix syntax error in sound modifiers
3 years ago
Darryl Pogue
025e36c4a2
Fix syntax error in sound modifiers
3 years ago
Adam Johnson
83c25b668a
Merge pull request #321 from DoobesURU/DynamicBounds
...
Add kDynamicBlocker collider toggle.
3 years ago
Adam Johnson
fb85d60a06
Merge pull request #295 from DoobesURU/AddLocalOnly
...
Add Local Only to Sound Emitter Modifier
3 years ago
Patrick Dulebohn
08d61e11c0
Revert node_messages.py to remove LocalOnly references per Hoikas
3 years ago
Patrick Dulebohn
3b13d2e3d2
Revert Random Sound Check
...
Backtrack local only/random sound check
3 years ago
Patrick Dulebohn
539e274367
Add random sound check
...
Random sound mods mixed with local only cause problems, so we raise an error message if that happens.
3 years ago
Patrick Dulebohn
7f408659df
Modify Sound Message Node
...
Allow the sound node to check for Local Only conditions.
3 years ago
Patrick Dulebohn
568ccbeea0
Fix Property Name
...
Uses the proper kPropLocalOnly.
3 years ago
Patrick Dulebohn
a93d7cb51d
Add Local Only
...
Adds the "Local Only/kIsLocalOnly" property to sound emitters. Dependent on the kPropIsLocalOnly attribute, which still needs to be added to libHSPlasma.
3 years ago
Patrick Dulebohn
996b681ca4
Adjust UI interface per Hoikas
3 years ago
Patrick Dulebohn
a446a1c62a
Change memberGroup to kGroupLOSOnly
...
collideGroup of kGroupDynamic with memberGroup kGroupLOSOnly blocks only kickables in both MOUL and PotS.
3 years ago
Patrick Dulebohn
9d0e478261
Set collideGroup along with memberGroup per dpogue
3 years ago
Patrick Dulebohn
f64fdebb2f
Adjust SimDef
...
Switch to proper kGroupDynamicBlocker
3 years ago
Patrick Dulebohn
b494d268ec
Remove excess whitespace
3 years ago
Patrick Dulebohn
5b49049194
More adjustments
...
Remove unneeded "safety" measures and set dynamic_blocker default value to True instead of False
3 years ago
Patrick Dulebohn
7bc9e9833b
Add kDynamicBlocker collider toggle.
...
Exports a collider that should hopefully block only dynamic objects (kickables). Also, some formatting adjustments to the properties script to match others (this can be undone if wanted)
3 years ago
Adam Johnson
89de4e103c
Update dependency hashes.
3 years ago
Adam Johnson
bbd243026a
Bump the build process to VC++2022.
...
This includes a new B4K built with VC++2022 as well.
3 years ago
Adam Johnson
5359447a10
Change installer from WiX to NSIS.
...
I don't really remember why we initially used WiX. Possibly to silently
update any existing Blender installs? Anyway, the problem is that the
VCRuntime MergeModules are deprecated, and GHA has pretty much removed
them. So, we need to use NSIS to be able to trivially run the
vc.redist.exe installer. It runs an MSI, and WiX produces MSIs, so to
keep using WiX, we'd need to write an installer-coordinator. Forget
about it. Just use NSIS.
3 years ago
Adam Johnson
af1b224702
Avoid double-installing Korman.
...
Don't install any copies of Korman that might be lurking inside the
Blender directory. This can easily result in interesting race conditions
where we can't predict what exactly will be installed. Worse, if the
korman installed to Blender is a Windows directory junction, then CPack
will fail with an inscrutable error.
3 years ago
Adam Johnson
301bf81ba5
Ensure HSPlasma gets the correct Python exe.
3 years ago
Adam Johnson
44a41429c3
Merge pull request #320 from DoobesURU/SoundMsgCallback
...
Add Callback EnumProperty to sound message node.
3 years ago
Patrick Dulebohn
8cb886be38
Fix EnumProperty descriptions
...
Adjust descriptions due to my blatant copy/paste per Hoikas.
Co-authored-by: Adam Johnson <AdamJohnso@gmail.com>
3 years ago
Patrick Dulebohn
54f5b8b0ed
Add Callback EnumProperty to sound message node.
3 years ago
Adam Johnson
f5f0147a93
Merge pull request #319 from DoobesURU/RemoveFlareOpacityMod
...
Remove Opacity Fader from Plasma flare function
3 years ago
Patrick Dulebohn
e4115138db
Adjust material/texture settings
...
Removes the Skip Depth Test (per Jrius) while also implementing updated emissive functions.
3 years ago
Patrick Dulebohn
dd43ede92e
Remove Opacity Fader from flaregen
...
Takes out opacity fader, which has been causing problems for end user.
3 years ago
Adam Johnson
1e198a1cfe
Merge pull request #318 from Jrius/envmap_fog_fix
...
Dynamic envmap: let the engine use default fog settings.
3 years ago
Jrius
f7d06016b1
Dynamic envmap: use -1 fog to let the engine use default fog settings.
3 years ago
Adam Johnson
560670bd34
Merge pull request #299 from DoobesURU/PythonTexNodeAnim
...
Add named animation EnumProperty
3 years ago
Adam Johnson
cd5db19410
Finish up the logic for multiple-animation Python nodes.
3 years ago
Patrick Dulebohn
2ca2349d81
Some Adjustments
...
A few adjustments to my poor copy paste to hopefully match it better with the node's other pieces.
3 years ago
Patrick Dulebohn
ca856e5ee7
Add named animation EnumProperty
...
Adds a needed animation picker for new named animations for the Python script texture node. Code borrowed from node_messages.py
3 years ago
Adam Johnson
2039b8a6d7
Merge pull request #317 from DoobesURU/LinkBookModShare
...
Add Share Function to Linking Book Mod
3 years ago
Patrick Dulebohn
c442a3a59a
One more slight adjustment of the UI
...
Moves the share Properties and adds separator like the others
3 years ago
Patrick Dulebohn
7f0d64fce3
More script fixes
...
Adjusts PointerProperty text, increases created share region size, and reorganizes where the share functions are on the modifier
3 years ago
Patrick Dulebohn
b8b3adac5d
A few naming fixes
...
Naming adjustments in the _create_moul_nodes definition
3 years ago
Patrick Dulebohn
ca85cb603c
More script touch ups per Hoikas.
3 years ago
Patrick Dulebohn
6bef5ba887
More fixes to the modifier pre_export, convert_logic, and logicwiz references
3 years ago
Patrick Dulebohn
7942501413
Add pre-export share region code
...
Creates us a new cube if no share region mesh is specified, similar to the click region only bigger
3 years ago
Patrick Dulebohn
4cee3d6876
Various fixes per Hoikas' suggestions
3 years ago
Patrick Dulebohn
528f381d32
Optional Share region
...
Adds a field for an optional share region (uses click region if blank).
3 years ago
Patrick Dulebohn
f335639b45
Add Share Function to Linking Book Mod
...
Adds a "Shareable" toggle to Linking Book Mod when Link Type is set to Private Link (MOUL only).
3 years ago
Adam Johnson
a63995dd8a
Merge pull request #315 from DoobesURU/WavesetAmpFix
...
Fix Waveset Amplitude
3 years ago
Patrick Dulebohn
ec130140b5
Adjust amp min comment
3 years ago
Patrick Dulebohn
9a5e8e7417
Fix Waveset Amplitude
...
Changes amplitude property to a three digit float for more precision, which fixes wobbly geostate waves
3 years ago
Adam Johnson
106c0895c1
Fix #314 .
3 years ago
Adam Johnson
95879a6873
Fix #292 .
3 years ago
Adam Johnson
5cf7f88906
Fix #313 .
...
It's `warn()`, not `warning()`, so fix'em all.
3 years ago