AzaezelX
19e4643707
new method tsstatic.getNodeTransform
...
used to look up a given node's transform by explicit name in a tsstatic object
2021-11-03 21:15:00 -05:00
Brian Roberts
e372545cc6
Merge pull request #647 from Azaezel/alpha40/guiProfileCleanups
...
clean up more texture profile refs to kill spam
2021-11-02 16:39:25 -05:00
Brian Roberts
7c1574355f
Merge pull request #653 from Ragora/bugfix-asan-tabcomplete
...
BugFix: Correct an invalid memory access error caused by the tab autocomplete
2021-11-02 16:38:18 -05:00
Robert MacGregor
215a93e9af
* BugFix: Correction for compiling on x86 Unix devices.
2021-11-02 17:36:22 -04:00
Robert MacGregor
2b53c065ce
* BugFix: Correct an invalid memory access error caused by the tab autocomplete in the console when attempting to tab complete at the start of the input while there is text to the right.
2021-11-02 13:55:57 -04:00
Robert MacGregor
dd03af5041
* BugFix: Corrections to the Unix file IO to allow for compilation on ARM Unix devics.
2021-11-01 08:52:35 -04:00
AzaezelX
0dcd272b87
clean up more texture profile refs to kill spam
2021-10-31 14:38:02 -05:00
Areloch
0fab2ebf54
Added fallback handling to MaterialAssets if the asset was found but the matDef was not
...
Added import config handling for prepending Directory to asset name
Added handling for import config of appending a sound suffix
Integrated handling of directory prepend and asset type suffix to rename issue resolution of asset importing
Corrected miswording of warn message for duplicate object names
Correct GUI issues with verve tools
Convert verve tools to utilize assets for their GUI elements
Fix window binding/naming issue depending on window mode for verve
Fix popup menus formatting for verve
WIP fix for material swap in Material editor. Corrects crash, but swap action is unreliable depending on object type
Fix display issue with mission area editor toolbar button image
Fix tooltip display of SFXEmitters in editor tree to correctly show the bound asset
Changed network graph accelerator keybind from just N to Ctrl N to avoid keybind issues when typing
Fixed Create New Emitter button in particle emitter that was showing as no texture
2021-10-28 23:52:58 -05:00
Brian Roberts
f250955f63
Merge pull request #640 from Azaezel/alpha40/iblCleanups
...
Alpha40/ibl cleanups
2021-10-28 12:27:24 -05:00
Robert MacGregor
5c83b417a5
* [GuiControl] BugFix: Don't assume a tooltip profile is going to be set when waking and sleeping.
2021-10-28 10:40:13 -04:00
Brian Roberts
6d0105948d
Merge pull request #636 from Azaezel/alpha40/matAnimAngry
...
addsa material.setAnimflags(LAYER,TAGS STRING); method
2021-10-27 18:58:41 -05:00
AzaezelX
8685173207
typofix
2021-10-27 16:01:37 -05:00
AzaezelX
a9bc56944c
Merge branch 'Preview4_0' of https://github.com/TorqueGameEngines/Torque3D into alpha40/iblCleanups
2021-10-27 13:50:58 -05:00
AzaezelX
42bc6fa358
differentiate forward lit and deferred ibl vars
...
since we're not currently using the same arrays et al for the whole pass, need to make sure those don't fight
2021-10-26 12:32:37 -05:00
Brian Roberts
e658c95f90
Merge pull request #632 from Ragora/bugfix-get-sound-filename-crash
...
BugFix: Correct a crash caused by sfxProfile
2021-10-26 11:49:55 -05:00
Robert MacGregor
72b31f6f6b
* BugFix: Correct a crash caused by sfxProfile due to returning an address to a temporary value in getSoundFileName.
2021-10-26 12:48:28 -04:00
Brian Roberts
8c2aaaad18
Merge pull request #638 from Ragora/bugfix-create-directory-logic
...
BugFix: Correct usage of mkdir in posixVolume.cpp
2021-10-26 11:17:28 -05:00
Robert MacGregor
0cf8498fce
* BugFix: Correct usage of mkdir in posixVolume.cpp to check for the expected successful return value.
2021-10-26 08:22:58 -04:00
Brian Roberts
0f4cf446a3
Merge pull request #631 from Azaezel/alpha40/spotlightSpotting
...
adress gl spotlights disapearing for deferred
2021-10-25 22:57:24 -05:00
AzaezelX
3fdf49f829
addsa material.setAnimflags(LAYER,TAGS STRING); method
...
workaround for mat.animFlags[#]= foo; not taking
time of writing seems to not work for scroll for some reason. might be a different bug
2021-10-25 22:54:19 -05:00
AzaezelX
a05c83493e
adress gl spotlights disapearing for deferred
...
It was mixing vars up between it and forward. resolved by prefixing the forward vars with "in" as the rest are, as well as pointing the val at the const String ShaderGenVars::lightSpotParams("$inlightSpotParams");
2021-10-21 22:08:56 -05:00
Brian Roberts
14ebeaf3eb
Merge pull request #625 from Ragora/bugfix-case-insensitivity-fatal-assert
...
BugFix: Correct a fatal error that may be thrown in case insensitive Unix IO
2021-10-21 14:17:49 -05:00
Brian Roberts
361ae7e2da
Merge pull request #627 from Azaezel/alpha40/soundAssetFollowup
...
sound asset followups
2021-10-21 14:17:39 -05:00
Jeff Hutchinson
4af4d90f4a
Get rid of setLocalVariable entirely.
2021-10-19 20:38:13 -04:00
Jeff Hutchinson
4293aef858
This one slipped through - nextToken can't use local variable for its token variable. This was stated as one of the breaking changes in the origional PR.
2021-10-19 20:34:57 -04:00
AzaezelX
670b246a2a
sound asset conversions - playlist (as a point of significance, that no longer uses mSlots.mTrack[ i ] on the backend. just th equivalent of mTrack[i]. While the former was certainly useful for clustering, it's actively fighting standarization)
2021-10-14 22:33:13 -05:00
AzaezelX
9ab5f61c39
sound asset conversions - ambience
2021-10-14 22:31:00 -05:00
Robert MacGregor
42b862a54b
* [Unix] BugFix: Correct a fatal error that may be thrown from functions like isFile is passed a bad path.
2021-10-14 20:38:01 -04:00
AzaezelX
f0d919e859
sound asset conversions - materials
2021-10-14 19:09:20 -05:00
Robert MacGregor
2586e73145
* BugFix: Correct a few memory leaks.
2021-10-14 19:40:16 -04:00
AzaezelX
00515fffa8
sound asset conversions - afxmagicmissile for a datablock case and guimltextcrtl for an object-instance case
2021-10-14 15:06:49 -05:00
AzaezelX
33210c4a1e
minor logic cleanups. we want to ensure if we *do* set the projectile sound to empty via editor, that gets propagated
2021-10-14 15:05:49 -05:00
AzaezelX
9217c62446
sound followups
...
debug spam removal
2021-10-14 15:04:52 -05:00
Brian Roberts
ba9debf89f
Merge pull request #617 from Ragora/adjustment-unix-case-insensitivity
...
Adjustment: POSIX Case Insensitivty
2021-10-13 13:12:29 -05:00
Brian Roberts
15aed0efc2
Merge pull request #616 from Azaezel/SoundAssetImplements
...
Sound asset implements
2021-10-13 13:11:57 -05:00
Robert MacGregor
bd9b3fd55b
* [Win32] Adjustment: Only trigger the Linux compat warning when TORQUE_POSIX_PATH_CASE_INSENSITIVE is disabled.
2021-10-13 11:40:54 -04:00
Jeff Hutchinson
90951b3cc8
Merge pull request #619 from Azaezel/alpha40/glcubefix
...
fix opengl cubemap display
2021-10-11 21:13:25 -04:00
AzaezelX
f5600826d7
Merge branch 'Preview4_0' into SoundAssetImplements
...
# Conflicts:
# Engine/source/T3D/assets/assetImporter.cpp
# Engine/source/forest/forestItem.cpp
2021-10-11 20:11:27 -05:00
AzaezelX
bce14ab63f
fix opengl cubemap display
2021-10-11 20:02:49 -05:00
Brian Roberts
8f8a8384e3
Merge pull request #608 from DraconicEnt/bugfix-msvc-compiler-warnings
...
BugFix: Correct MSVC Compiler Warnings
2021-10-11 19:31:22 -05:00
Brian Roberts
ed80136322
Merge pull request #615 from JeffProgrammer/gl_meminfo
...
OpenGL Memory Info Extensions
2021-10-11 19:31:10 -05:00
Robert MacGregor
aba091a97a
Merge remote-tracking branch 'main/Preview4_0' into bugfix-msvc-compiler-warnings
2021-10-11 19:36:52 -04:00
Robert MacGregor
c376bc3f9c
* [ZIP] BugFix: Correct another codepath that may fail due to case sensitive string searches.
2021-10-11 19:31:37 -04:00
Robert MacGregor
8d0128698a
* [ZIPVolume] BugFix: Add the capability of resolving ZIP prefix paths with case insensitivity and a CMake option to control this behavior.
2021-10-11 19:02:58 -04:00
AzaezelX
d9eea8e5be
make gcc happy
2021-10-11 16:25:37 -05:00
AzaezelX
e468c2bf73
add a bit of further clarity to soundasset code injectors
2021-10-11 14:38:14 -05:00
Robert MacGregor
f3eadb922b
Merge remote-tracking branch 'origin/Preview4_0' into adjustment-unix-case-insensitivity
2021-10-11 10:56:56 -04:00
Robert MacGregor
444c9dcf41
* BugFix: Correct non-constant array allocations in the POSIX case insensitivity code.
2021-10-11 10:45:02 -04:00
Robert MacGregor
497a94f884
* Adjustment: Cleanups to the case insensitivity code for POSIX systems and add case insensitivty to directory dumping code.
2021-10-11 10:24:24 -04:00
Brian Roberts
fe3edb8ccf
Merge pull request #613 from Azaezel/kermithelpme
...
followups to #582
2021-10-11 01:27:15 -05:00