mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:28:17 +08:00
RBSerialization 2D Vector
This commit is contained in:
@@ -59,12 +59,12 @@ export default class Configuration {
|
||||
// End of upper case work (upper case followed by either word or number)
|
||||
+ "|(?<=[A-Z])"
|
||||
+ /* Except "UVs" */ "(?<!U(?=Vs(?![a-z])))"
|
||||
+ /* Except V3 */ "(?<!V(?=3(?![0-9])))"
|
||||
+ /* Except V2, V3 */ "(?<!V(?=[23](?![0-9])))"
|
||||
+ /* Except T2d */ "(?<!T(?=2d(?![a-z])))"
|
||||
+ "(?=[A-Z][a-z]|[0-9])"
|
||||
// Number followed by a letter
|
||||
+ "|(?<=[0-9])"
|
||||
+ /* Except 2D 3D */ "(?<))"
|
||||
+ /* Except 2D, 3D */ "(?<))"
|
||||
+ "(?=[a-zA-Z])"
|
||||
// "Alpha__Bravo" => "Alpha Bravo"
|
||||
+ "|\\s*_+\\s*"
|
||||
|
||||
Reference in New Issue
Block a user