Commit graph

5419 commits

Author SHA1 Message Date
Brian Roberts f7c6219960
Merge pull request #645 from Areloch/QOL20211028
Misc QOL and Bugfixes for 2021/10/28
2021-10-29 16:10:56 -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 59bebe0bb4
Merge pull request #641 from Ragora/bugfix-arm-detection
Feature: Properly detect ARM32/ARM64 in the CMake build process
2021-10-28 18:08:07 -05:00
Brian Roberts 1f06cf1dad
Merge pull request #644 from Ragora/adjustment-update-assimp
Adjustment: Update Assimp version to 5.0.1.
2021-10-28 17:48:39 -05:00
Brian Roberts f250955f63
Merge pull request #640 from Azaezel/alpha40/iblCleanups
Alpha40/ibl cleanups
2021-10-28 12:27:24 -05:00
Brian Roberts 99daf9479e
Merge pull request #643 from Ragora/bugfix-material-selector-invocation
BugFix: Don't assume a tooltip profile is going to be set when waking and sleeping
2021-10-28 11:57:05 -05:00
Brian Roberts 8bc2587b43
Merge pull request #642 from Ragora/bugfix-inspector-rightclick-locked
BugFix: Correct the usage of a local variable in a non-function scope
2021-10-28 11:56:31 -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
Robert MacGregor 9d2e95a1b1 * BugFix: Correct the usage of a local variable in a non-function scope in the set object locked dropdown item when right clicking in the inspector. 2021-10-28 10:30:43 -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
Robert MacGregor 6b56210a47 * Feature: Properly detect ARM32/ARM64 in the CMake build process and enable ARM NEON when either of these are detected. 2021-10-27 17:30:43 -04:00
AzaezelX 8685173207 typofix 2021-10-27 16:01:37 -05:00
Brian Roberts 69216b706a
Merge pull request #639 from Azaezel/alpha40/importerFix
typofix for impoerter
2021-10-27 13:52:45 -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 bf646b604f typofix for impoerter 2021-10-26 17:47:19 -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 7f5766a7fc
Merge pull request #635 from Ragora/bugfix-asset-browser-delete-directory-loop
BugFix: Address an error where deleting directories may result in an infinite loop
2021-10-26 00:25:45 -05:00
AzaezelX d07d113246 blatantly ganked from T2D; adds rotation as an option for drawbitmap
demonstrates a bit of usage in guibitmapctrl. (do note, gui elements may need followup via altering thier clip rect depending on how folks want to end up using this)
2021-10-25 23:16:41 -05: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
Brian Roberts 4b3a83c4df
Merge pull request #633 from Ragora/bugfix-asset-browser-horizontal
BugFix: Allow the asset browser tree view to use a horizontal scroll bar
2021-10-25 22:57:06 -05:00
Brian Roberts f6b3bda106
Merge pull request #634 from Ragora/bugfix-editor-f-keys
BugFix: Correct the inability to use function keys F1-F10
2021-10-25 22:56:52 -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
Robert MacGregor 4082fd36e3 * [AssetBrowser] BugFix: Address an error where deleting directories may result in an infinite loop. 2021-10-25 17:58:24 -04:00
Robert MacGregor 27d75486e6 * [Editor] BugFix: Correct the inability to use function keys F1-F10 when running the editor. These keys were supposed to open a series of other editors. 2021-10-24 19:10:59 -04:00
Robert MacGregor edf9afbd9b * [AssetBrowser] BugFix: Allow the asset browser tree view to use a horizontal scroll bar where necessary. 2021-10-22 11:22:34 -04: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
Robert MacGregor 4758f7bdaf * Adjustment: Update Assimp version to 5.0.1. 2021-10-21 21:14:55 -04: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
Brian Roberts 77ac78493a
Merge pull request #630 from JeffProgrammer/ts-nexttoken
This one slipped through - nextToken can't use local variable for its…
2021-10-19 19:44:04 -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
Brian Roberts 84be0a369f
Merge pull request #629 from Ragora/bugfix-shader-error-crashes
BugFix: Correct GLSL Pathing Errors in Light Rays Shader
2021-10-19 14:34:39 -05:00
Robert MacGregor 0b24c728ea * [GLSL] BugFix: Correct invalid relative include paths in lightRayOcclude.glsl. 2021-10-18 09:46:58 -04:00
Brian Roberts 479f943cfd
Merge pull request #628 from Ragora/bugfix-asset-browser-selection
BugFix: Correct a case where creator categories may get populated Incorrectly
2021-10-17 18:13:07 -05:00
Robert MacGregor 58170a7805 * [AssetBrowser] BugFix: Correct a case where creator categories may get shoved into the first module in the tree when entering asset select mode. 2021-10-17 18:21:29 -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
Brian Roberts ce9f2e51e0
Merge pull request #626 from Ragora/bugfix-codechecker-warnings
BugFix: Correct a few memory leaks
2021-10-14 20:05:23 -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
AzaezelX 9af2de3c4b upconverter tweaks 2021-10-14 19:07:48 -05:00
AzaezelX c2fdb733fa make mat editor list and set soundassets 2021-10-14 19:07:36 -05:00
Robert MacGregor 2586e73145 * BugFix: Correct a few memory leaks. 2021-10-14 19:40:16 -04:00
AzaezelX adbd6d0711 sound asset conversions importer script updates - afxmagicmissile for a datablock case and guimltextcrtl for an object-instance case 2021-10-14 15:12:50 -05: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