Counter-Strike 2 update

Build 24537688

3 Aug 2026, 21:18 UTC

Official patch notes

Available

Counter-Strike 2 Update
Read patch notes

Technical changes

28 files changed

+736 additions-581 removals
View file changes

Official patch notes

Counter-Strike 2 Update

Published 3 Aug 2026, 21:18 UTC

GAMEPLAY

  • Fixed a case where grenades could be thrown through level geometry

MAPS

Cache

  • Fixed various gaps in map

  • Fixed collision in various spots across map

  • Fixed flickering on some assets

  • Removed boost spot in Outside A

Shelter

  • Updated to the latest version from the Community Workshop (Update Notes)

MAP SCRIPTING

  • Added Instance.TracePlayer

  • Added Instance.OnWeaponPickup

  • Added Instance.OnBombExplode

  • Added Instance.SpawnGrenadeProjectile

  • Added dropper to Instance.OnWeaponDrop event

  • Added hitEntity to Instance.OnGrenadeBounce event

  • Added normal to Instance.OnGrenadeBounce event

  • Added CSGrenadeProjectileBase.GetGrenadeType

  • Added CSGrenadeProjectileBase.GetThrower

  • Added CSGrenadeProjectileBase.Detonate

  • Added CSPlantedC4.IsBombsiteA

  • Added CSPlantedC4.IsBombsiteB

  • Added CSPlantedC4.GetPlanter

  • Added CSPlantedC4.GetDefuser

  • Added CSPlantedC4.IsActive

  • Added CSPlantedC4.IsExploded

  • Added CSPlantedC4.IsDefused

  • Added CSPlantedC4.GetPlantTime

  • Added CSPlantedC4.GetExplodeTime

  • Added CSPlantedC4.GetDefuseStartTime

  • Added CSPlantedC4.GetDefuseFinishTime

  • Added CSPlayerPawn.HasDefuser

  • Added CSPlayerPawn.SetHasDefuser

  • Added CSGrenadeType enum

  • Fixed a bug where Instance.RegisterCheatCommand would not work on script reload.

  • Deprecated bounces from Instance.OnGrenadeBounce event.

Technical changes

Changed files

Showing 20 of 28 tracked files.

28 files+736-581
M
DumpSource2/.stringsignore
+1-0
@@ -28410,6 +28410,7 @@ m_vecSprayDir
2841028410 m_vecStart
2841128411 m_vecStartOrigin
2841228412 m_vecStartPos
28413+m_vecStashedGrenadeThrowPawnCenter
2841328414 m_vecStashedGrenadeThrowPosition
2841428415 m_vecStashedVelocity
2841528416 m_vecStressPositionA
M
DumpSource2/convars.txt
+1-1
@@ -2398,7 +2398,7 @@ commentary_available false (developmentonly gamedll defensive)
23982398 commentary_node_use_viewfacing false (developmentonly clientdll defensive)
23992399 <no description>
24002400
2401-composite_material_cache_count_max 16 (developmentonly clientdll)
2401+composite_material_cache_count_max 24 (developmentonly clientdll)
24022402 <no description>
24032403
24042404 composite_material_dump_images false (developmentonly clientdll)
M
DumpSource2/module_metadata/server.kv3
+1-1
@@ -872,7 +872,7 @@
872872 name = "CCSPlayerPawn_Minimal_server"
873873 group = "GameSessionManifest_server"
874874 source_file = "src/game/server/cstrike15/cs_player_pawn.cpp"
875- source_line = 1147
875+ source_line = 1148
876876 resources =
877877 [
878878 resource_name:"agents/models/ctm_sas/ctm_sas.vmdl",
M
DumpSource2/schemas/client/C_CSPlayerPawn.h
+1-0
@@ -85,6 +85,7 @@ class C_CSPlayerPawn : public C_CSPlayerPawnBase
8585 bool m_bGrenadeParametersStashed;
8686 QAngle m_angStashedShootAngles;
8787 VectorWS m_vecStashedGrenadeThrowPosition;
88+ VectorWS m_vecStashedGrenadeThrowPawnCenter;
8889 Vector m_vecStashedVelocity;
8990 bool m_bShouldAutobuyDMWeapons;
9091 GameTime_t m_fImmuneToGunGameDamageTime;
M
DumpSource2/schemas/server/CCSPlayerPawn.h
+1-0
@@ -97,6 +97,7 @@ class CCSPlayerPawn : public CCSPlayerPawnBase
9797 bool m_bGrenadeParametersStashed;
9898 QAngle m_angStashedShootAngles;
9999 VectorWS m_vecStashedGrenadeThrowPosition;
100+ VectorWS m_vecStashedGrenadeThrowPawnCenter;
100101 Vector m_vecStashedVelocity;
101102 bool m_bCommittingSuicideOnTeamChange;
102103 bool m_wasNotKilledNaturally;
M
DumpSource2/schemas/server/dynpitchvol_base_t.h
+2-2
@@ -17,8 +17,8 @@
1717 // "pitch": 0,
1818 // "spinupsav": 0,
1919 // "spindownsav": 0,
20-// "pitchfrac": -1911425974,
21-// "vol": 32766,
20+// "pitchfrac": 601313450,
21+// "vol": 32764,
2222 // "fadeinsav": 0,
2323 // "fadeoutsav": 0,
2424 // "volfrac": 0,
M
DumpSource2/schemas/server/dynpitchvol_t.h
+2-2
@@ -17,8 +17,8 @@
1717 // "pitch": 0,
1818 // "spinupsav": 0,
1919 // "spindownsav": 0,
20-// "pitchfrac": -1911425974,
21-// "vol": 32766,
20+// "pitchfrac": 601313450,
21+// "vol": 32764,
2222 // "fadeinsav": 0,
2323 // "fadeoutsav": 0,
2424 // "volfrac": 0,
M
content/csgo/maps/editor/zoo/scripts/point_script.d.ts
+109-11
@@ -112,9 +112,11 @@ declare module "cs_script/point_script"
112112 */
113113 OnBeginRoundRestart(callback: () => void): void;
114114 /** Called when a player plants the c4 */
115- OnBombPlant(callback: (event: { plantedC4: Entity, planter: CSPlayerPawn }) => void): void;
115+ OnBombPlant(callback: (event: { plantedC4: CSPlantedC4, planter: CSPlayerPawn }) => void): void;
116116 /** Called when a player defuses the c4 */
117- OnBombDefuse(callback: (event: { plantedC4: Entity, defuser: CSPlayerPawn }) => void): void;
117+ OnBombDefuse(callback: (event: { plantedC4: CSPlantedC4, defuser: CSPlayerPawn }) => void): void;
118+ /** Called when a c4 explodes */
119+ OnBombExplode(callback: (event: { plantedC4: CSPlantedC4 }) => void): void;
118120 /**
119121 * Called immediately before a CSPlayerPawn takes damage to armor and health.
120122 * Called after hitgroup modifications are applied such as headshot multiplier.
@@ -150,11 +152,13 @@ declare module "cs_script/point_script"
150152 */
151153 OnBulletImpact(callback: (event: { weapon: CSWeaponBase, position: Vector, hitEntity: Entity }) => void): void;
152154 /** Called when a weapon is dropped. */
153- OnWeaponDrop(callback: (event: { weapon: CSWeaponBase }) => void): void;
155+ OnWeaponDrop(callback: (event: { weapon: CSWeaponBase, dropper: CSPlayerPawn }) => void): void;
156+ /** Called when a weapon is picked up. */
157+ OnWeaponPickup(callback: (event: { weapon: CSWeaponBase }) => void): void;
154158 /** Called when a grenade is thrown. `projectile` is the newly created grenade projectile. */
155- OnGrenadeThrow(callback: (event: { weapon: CSWeaponBase, projectile: Entity }) => void): void;
156- /** Called when a grenade bounces off a surface. `bounces` is the number of bounces so far. */
157- OnGrenadeBounce(callback: (event: { projectile: Entity, bounces: number }) => void): void;
159+ OnGrenadeThrow(callback: (event: { weapon: CSWeaponBase, projectile: CSGrenadeProjectileBase }) => void): void;
160+ /** Called when a grenade bounces. */
161+ OnGrenadeBounce(callback: (event: GrenadeBounceEvent) => void): void;
158162 /** Called when a knife attacks, even if it misses. */
159163 OnKnifeAttack(callback: (event: { weapon: CSWeaponBase, attackType: CSWeaponAttackType }) => void): void;
160164
@@ -186,6 +190,8 @@ declare module "cs_script/point_script"
186190 TraceSphere(trace: { radius: number } & BaseTraceConfig): TraceResult;
187191 /** Trace an axis aligned bounding box along a line and detect collisions */
188192 TraceBox(trace: { mins: Vector, maxs: Vector } & BaseTraceConfig): TraceResult;
193+ /** Trace as a player would collide */
194+ TracePlayer(trace: PlayerTrace): PlayerTraceResult;
189195 /** Trace as a bullet and detect hits and damage */
190196 TraceBullet(trace: BulletTrace): BulletTraceResult[];
191197
@@ -208,15 +214,14 @@ declare module "cs_script/point_script"
208214 /** Set the time remaining in the current round in seconds. */
209215 SetRoundRemainingTime(time: number): void;
210216
217+ /** Spawns a live grenade projectile. */
218+ SpawnGrenadeProjectile(config: SpawnGrenadeProjectileConfig): CSGrenadeProjectileBase;
219+
211220 /** Issue the specified command to the specified client. */
212221 ClientCommand(playerSlot: number, command: string): void;
213222 /** Issue a command. */
214223 ServerCommand(command: string): void;
215- /**
216- * Creates a console command that will run the specified callback. The command will only work when sv_cheats is true.
217- * @experimental This method is experimental and may experience breaking changes.
218- * Please send feedback to CSGOTeamFeedback@valvesoftware.com with "cs_script Feedback" in the subject line.
219- */
224+ /** Creates a console command that will run the specified callback. The command will only work when sv_cheats is true. */
220225 RegisterCheatCommand(name: string, callback: (args: string) => void): void;
221226
222227 /** @deprecated This method will be removed in a future update */
@@ -280,6 +285,15 @@ declare module "cs_script/point_script"
280285 UNKNOWN,
281286 }
282287
288+ export enum CSGrenadeType {
289+ HE,
290+ FLASHBANG,
291+ MOLOTOV,
292+ INCENDIARY,
293+ DECOY,
294+ SMOKE
295+ }
296+
283297 export enum CSWeaponAttackType {
284298 INVALID = -1,
285299 PRIMARY,
@@ -428,6 +442,31 @@ declare module "cs_script/point_script"
428442 hitGroup: CSHitGroup;
429443 }
430444
445+ /**
446+ * Configuration object for `Instance.TracePlayer`
447+ */
448+ interface PlayerTrace {
449+ start: Vector;
450+ /** Leave undefined to just test if `start` is a valid position for the player. */
451+ end?: Vector;
452+ /** The player moving. Effects hull size and player collision. */
453+ player: CSPlayerPawn;
454+ /** Configure tracing as a ducked player, effecting the size of the traced Box. Defaults to the player's IsDucked() value. */
455+ isDucked?: boolean;
456+ }
457+
458+ /**
459+ * Result entry for `Instance.TracePlayer`
460+ */
461+ interface PlayerTraceResult {
462+ fraction: number;
463+ end: Vector;
464+ didHit: boolean;
465+ startedInSolid: boolean;
466+ normal: Vector;
467+ hitEntity?: Entity;
468+ }
469+
431470 interface ModifyPlayerDamageEvent {
432471 /** The victim that is taking damage */
433472 player: CSPlayerPawn;
@@ -477,6 +516,43 @@ declare module "cs_script/point_script"
477516 weapon?: CSWeaponBase;
478517 }
479518
519+ interface GrenadeBounceEvent {
520+ projectile: CSGrenadeProjectileBase;
521+ hitEntity: Entity;
522+ normal: Vector;
523+ /** @deprecated this field will be removed in a future update */
524+ bounces: number
525+ }
526+
527+ type SpawnGrenadeProjectileConfig = SpawnGrenadeProjectileConfigWithOwner | SpawnGrenadeProjectileConfigWithoutOwner;
528+
529+ interface SpawnGrenadeProjectileConfigWithOwner {
530+ type: CSGrenadeType;
531+ thrower: CSPlayerPawn;
532+ /* defaults to 1, full strength. */
533+ throwStrength?: number;
534+ /* defaults to thrower's throw position */
535+ position?: Vector;
536+ /* defaults to {0,0,0} */
537+ angles?: QAngle;
538+ /* defaults to thrower's throw velocity */
539+ velocity?: Vector;
540+ /* defaults to a {600,rand(-1200,1200),0} */
541+ angularVelocity?: RotationVector;
542+ }
543+
544+ interface SpawnGrenadeProjectileConfigWithoutOwner {
545+ type: CSGrenadeType;
546+ /* position is required if no thrower is specified */
547+ position: Vector;
548+ /* defaults to {0,0,0} */
549+ angles?: QAngle;
550+ /* defaults to {0,0,0} */
551+ velocity?: Vector;
552+ /* defaults to {0,0,0} */
553+ angularVelocity?: RotationVector;
554+ }
555+
480556 /**
481557 * The base class for all entities
482558 */
@@ -587,6 +663,26 @@ declare module "cs_script/point_script"
587663 GetPenetration(): number;
588664 }
589665
666+ export class CSGrenadeProjectileBase extends BaseModelEntity {
667+ GetThrower(): CSPlayerPawn;
668+ GetGrenadeType(): CSGrenadeType;
669+ Detonate(): void;
670+ }
671+
672+ export class CSPlantedC4 extends BaseModelEntity {
673+ IsBombsiteA(): boolean;
674+ IsBombsiteB(): boolean;
675+ GetPlanter(): CSPlayerPawn | undefined;
676+ GetDefuser(): CSPlayerPawn | undefined;
677+ IsActive(): boolean;
678+ IsExploded(): boolean;
679+ IsDefused(): boolean;
680+ GetPlantTime(): number;
681+ GetExplodeTime(): number | undefined; // undefined if not active
682+ GetDefuseStartTime(): number | undefined; // undefined if not defusing
683+ GetDefuseFinishTime(): number | undefined; // undefined if not defusing
684+ }
685+
590686 export class CSPlayerController extends Entity {
591687 GetPlayerSlot(): number;
592688 GetPlayerName(): string;
@@ -640,6 +736,8 @@ declare module "cs_script/point_script"
640736 SetArmor(value: number): void;
641737 HasHelmet(): boolean;
642738 SetHasHelmet(hasHelmet: boolean): void;
739+ HasDefuser(): boolean;
740+ SetHasDefuser(hasDefuser: boolean): void;
643741 IsDucking(): boolean;
644742 IsDucked(): boolean;
645743 IsScoped(): boolean;
M
content/csgo/maps/editor/zoo/scripts/trace.js
+14-3
@@ -3,7 +3,7 @@ import { CSHitGroup, CSPlayerPawn, Instance } from "cs_script/point_script";
33 const traceFrequency = 0;
44 const drawDuration = 0;
55
6-/** @type {"line" | "sphere" | "box" | "bullet" | null} */
6+/** @type {"line" | "sphere" | "box" | "player" | "bullet" | null} */
77 let traceType = null;
88 /** @type {CSPlayerPawn | undefined} */
99 let tracePawn = undefined;
@@ -22,10 +22,10 @@ Instance.OnScriptReload({
2222
2323 Instance.RegisterCheatCommand("script_zoo_trace", (args) => {
2424 tracePawn = Instance.GetAllPlayerControllers()[0].GetPlayerPawn();
25- if (args === "line" || args === "sphere" || args === "box" || args === "bullet") {
25+ if (args === "line" || args === "sphere" || args === "box" || args === "player" || args === "bullet") {
2626 traceType = args;
2727 } else {
28- Instance.Msg("Usage: script_zoo_trace <type> - type can be line, sphere, box, or bullet.")
28+ Instance.Msg("Usage: script_zoo_trace <type> - type can be line, sphere, box, player, or bullet.")
2929 traceType = null;
3030 }
3131 });
@@ -61,6 +61,17 @@ Instance.SetThink(() => {
6161
6262 const result = Instance.TraceBox({ start, end, mins, maxs, ignoreEntity: tracePawn });
6363
64+ Instance.DebugBox({ mins: vectorAdd(result.end, mins), maxs: vectorAdd(result.end, maxs), duration: drawDuration, color: { r: 255, g: 0, b: 0 } });
65+ if (result.didHit) {
66+ const normalEnd = vectorAdd(result.end, vectorScale(result.normal, 10));
67+ Instance.DebugLine({ start: result.end, end: normalEnd, duration: drawDuration, color: { r: 255, g: 255, b: 0 } });
68+ }
69+ } else if (traceType === "player") {
70+ const mins = { x: -16, y: -16, z: 0 };
71+ const maxs = { x: 16, y: 16, z: tracePawn.IsDucked() ? 36 : 72 };
72+
73+ const result = Instance.TracePlayer({ start, end, player: tracePawn });
74+
6475 Instance.DebugBox({ mins: vectorAdd(result.end, mins), maxs: vectorAdd(result.end, maxs), duration: drawDuration, color: { r: 255, g: 0, b: 0 } });
6576 if (result.didHit) {
6677 const normalEnd = vectorAdd(result.end, vectorScale(result.normal, 10));
M
game/bin/built_from_cl.txt
+1-1
@@ -1 +1 @@
1-10862664
1+10877660
M
game/bin/win64/assetpreview_strings.txt
+4-10
@@ -8068,7 +8068,6 @@ $prefix_element$
80688068 .webp
80698069 /\r?hideEvent@QScrollBar@@MEAAXPEAVQHideEvent@@@Z
80708070 /]?size@QImage@@QEBA?AVQSize@@XZ
8071-0Hjn
80728071 0\r%0t
80738072 0x%1
80748073 0x%llx
@@ -8234,7 +8233,7 @@ $prefix_element$
82348233 2\n?doItemsLayout@QListView@@UEAAXXZ
82358234 2\r?hideEvent@QWidget@@MEAAXPEAVQHideEvent@@@Z
82368235 2\v?event@QAction@@MEAA_NPEAVQEvent@@@Z
8237-2\vp4
8236+2\vpd
82388237 2_BONE_IK
82398238 2aboutToShow()
82408239 2accepted()
@@ -13651,13 +13650,11 @@ Overwrite With Current
1365113650 Overwrite all bone data
1365213651 Overwrite existing flags only
1365313652 Overwriting existing wrinkle map data on mesh
13654-P<mn
1365513653 P?isValid@QColor@@QEBA_NXZ
1365613654 P?itemData@QStandardItemModel@@UEBA?AV?$QMap@HVQVariant@@@@AEBVQModelIndex@@@Z
1365713655 P?jumpToNextImage@QImageReader@@QEAA_NXZ
1365813656 PARENT
1365913657 PF\n%d %d\n-1.000000\n
13660-PHjn
1366113658 POISONED
1366213659 POSE_SPACE_BONE
1366313660 POSE_SPACE_MORPH
@@ -14066,6 +14063,7 @@ RMouse
1406614063 RMouseDoubleClick
1406714064 ROTATION
1406814065 R\f?font@QTreeWidgetItem@@QEBA?AVQFont@@H@Z
14066+R\fpd
1406914067 R\t?canFetchMore@QAbstractItemModel@@UEBA_NAEBVQModelIndex@@@Z
1407014068 R\v?event@QMenuBar@@MEAA_NPEAVQEvent@@@Z
1407114069 R^?supportedDropActions@QStandardItemModel@@UEBA?AV?$QFlags@W4DropAction@Qt@@@@XZ
@@ -14274,6 +14272,7 @@ Right pose, i.e. frame 2 from the 3 frame turn animation file with frame 1 subtr
1427414272 RightFingers
1427514273 Rigid
1427614274 Rigid Edge Hinges
14275+Rigid Weight to '%s'
1427714276 Rigid Weight to Bone
1427814277 Root Bone
1427914278 Root Bone Name
@@ -15566,7 +15565,6 @@ ZoomForwardBack3D
1556615565 \f\n?cmp@QVariant@@QEBA_NAEBV1@@Z
1556715566 \f\n?deselect@QLineEdit@@QEAAXXZ
1556815567 \f\tV_acosd
15569-\fp\v`Hjn
1557015568 \n?bits@QImage@@QEAAPEAEXZ
1557115569 \n?blue@QColor@@QEBAHXZ
1557215570 \n?blueF@QColor@@QEBANXZ
@@ -15600,7 +15598,6 @@ ZoomForwardBack3D
1560015598 \n?edit@QAbstractItemView@@MEAA_NAEBVQModelIndex@@W4EditTrigger@1@PEAVQEvent@@@Z
1560115599 \n?editingFinished@QLineEdit@@QEAAXXZ
1560215600 \n?editorDestroyed@QAbstractItemView@@MEAAXPEAVQObject@@@Z
15603-\nPCn
1560415601 \n\r?heightForWidth@QBoxLayout@@UEBAHH@Z
1560515602 \n\t\tCREATE TABLE IF NOT EXISTS Thumbnails (\n\t\t\tAssetPath TEXT PRIMARY KEY,\n\t\t\tFingerprint INTEGER,\n\t\t\tPNGData BLOB\n\t\t);\n\t
1560615603 \n\t\tDELETE FROM Thumbnails WHERE AssetPath IN ( SELECT AssetPath FROM AssetsToDelete );\n\t\tDROP TABLE AssetsToDelete;\n\t\tCOMMIT;\n\t
@@ -15610,7 +15607,6 @@ ZoomForwardBack3D
1561015607 \ng default\n
1561115608 \ng_flConfigMaxCoord
1561215609 \ng_flToolsDefaultFarZ
15613-\nt8n
1561415610 \r?darker@QColor@@QEBA?AV1@H@Z
1561515611 \r?data@QStandardItem@@UEBA?AVQVariant@@H@Z
1561615612 \r?data@QStandardItemModel@@UEBA?AVQVariant@@AEBVQModelIndex@@H@Z
@@ -15686,7 +15682,6 @@ ZoomForwardBack3D
1568615682 \v?findText@QComboBox@@QEBAHAEBVQString@@V?$QFlags@W4MatchFlag@Qt@@@@@Z
1568715683 \v?fixup@QSpinBox@@MEBAXAEAVQString@@@Z
1568815684 \v?focusChanged@QApplication@@QEAAXPEAVQWidget@@0@Z
15689-\vPHjn
1569015685 \v\f?focusInEvent@QGroupBox@@MEAAXPEAVQFocusEvent@@@Z
1569115686 ]?sharedPainter@QPaintDevice@@MEBAPEAVQPainter@@XZ
1569215687 ]?staticMetaObject@QWindow@@2UQMetaObject@@B
@@ -16859,7 +16854,6 @@ group_name
1685916854 group_title
1686016855 grow_or_shrink
1686116856 guide_hair_count
16862-h*\n04a
1686316857 hResource
1686416858 h\r?horizontalScrollbarAction@QTreeView@@MEAAXH@Z
1686516859 h\v?event@QTabWidget@@MEAA_NPEAVQEvent@@@Z
@@ -17623,7 +17617,6 @@ pCurrentFocusWidget
1762317617 pDescription
1762417618 pEvent != nullptr
1762517619 pFilter
17626-pHjn
1762717620 pLightRigButton
1762817621 pMaterialGroupName
1762917622 pModelResourceName
@@ -17838,6 +17831,7 @@ quad_bend_tolerance
1783817831 quadratic
1783917832 quaternion_array
1784017833 quiet
17834+r\vpd
1784117835 r_renderdoc_capture_thumbnail_rendering
1784217836 rad2deg
1784317837 radius0_key
M
game/bin/win64/assetrename_strings.txt
+108-121
@@ -57,7 +57,6 @@
5757 ** Entrypoint For Method '%s'
5858 - Fixed-up reference: '%s' -> '%s'<br>\n
5959 -testmode
60- .0HB
6160 : First
6261 : Last
6362 <-- Arg '%s'
@@ -183,7 +182,6 @@
183182 #\tV_exp2f
184183 #frame { padding-left: 20px; padding-right: 0px; margin: 0px; }#left_label { padding: 2px; }#right_label { padding: 2px; font-weight: bold }#frame:hover { background-color: palette( highlight ); }#left_label:hover { background-color: palette( highlight ); color: palette( highlighted-text ); }#right_label:hover { background-color: palette( highlight ); color: palette( highlighted-text ); }
185184 #line
186-$0hA
187185 $6(h**,&.b,~0
188186 $ModelPath$/transmission
189187 $\f?focusNextPrevChild@QWidget@@MEAA_N_N@Z
@@ -195,6 +193,7 @@ $modelname$_masks
195193 $modelname$_occlusion
196194 $modelname$_pos
197195 $modelname$_surface
196+$pPA
198197 $prefix_attribute$
199198 $prefix_element$
200199 $x(<*L(^$*.d$40.2Z$D6@$Q
@@ -277,6 +276,7 @@ $x(<*L(^$*.d$40.2Z$D6@$Q
277276 %llx
278277 %lu: Row out of range, max %lu
279278 %lu: Sample out of range, max %lu
279+%pPA
280280 %s %s -> %s
281281 %s %s [D%d] mod '%s'
282282 %s %s decoding is not implemented
@@ -467,6 +467,7 @@ $x(<*L(^$*.d$40.2Z$D6@$Q
467467 '%s' is not a valid variable type
468468 'OverrideClass' was specified but class '%s' has not been previously defined.\n
469469 '\v?enterEvent@QMenu@@MEAAXPEAVQEvent@@@Z
470+'pPA
470471 ( min( max( %s, %.2g ), %.2g ) - %.2g ) / %.2g
471472 ( nSelectionMode != SPECIFIC )
472473 (%d)pin: %s
@@ -491,6 +492,7 @@ $x(<*L(^$*.d$40.2Z$D6@$Q
491492 (Vertices to Faces)
492493 (\f?focusOutEvent@QAbstractButton@@MEAAXPEAVQFocusEvent@@@Z
493494 (\v?enterEvent@QToolButton@@MEAAXPEAVQEvent@@@Z
495+(f tB
494496 (h$&&h*,,V*J&
495497 (knN(kn
496498 (no-compile)
@@ -565,16 +567,20 @@ $x(<*L(^$*.d$40.2Z$D6@$Q
565567 -.vmdl
566568 -> Success (%d attempts)\n
567569 -\nLx.\nAh/\n/4h
568--\r0hA
570+-\npoA
569571 -]?size@QFontMetrics@@QEBA?AVQSize@@HAEBVQString@@HPEAH@Z
570572 -deprecated-
571-.0DA
572-.0LB
573-.0MA
574-.0ZB
575-.0hB
576-.0rA
577-.0vA
573+.0AA
574+.0CA
575+.0KB
576+.0SA
577+.0UB
578+.0aA
579+.0jA
580+.0kA
581+.0lA
582+.0wB
583+.0zB
578584 .:2&4"6(8$6j:<.&<$.Z>h@<>.:
579585 .?AU?$AccessorT@VCActionComponent@@VCAnimGraphDoc_Action@@@ArrayOperator@Attribute@@
580586 .?AU?$AccessorT@VCAnimGraphDoc_ComponentManager@@VCAnimGraphDoc_Component@@@ArrayOperator@Attribute@@
@@ -14180,17 +14186,18 @@ $x(<*L(^$*.d$40.2Z$D6@$Q
1418014186 .MESH
1418114187 .P6A?AV?$CBufferStringN@$0BE@@@PEBVCAnimGraphDoc_StateTransition@@@Z
1418214188 .P6AXPEBDPEAVCBufferString@@@Z
14183-.PGB
14189+.PCA
1418414190 .PKB
14185-.PLB
14186-.PMA
14191+.PLA
14192+.PMB
14193+.PSA
14194+.PZA
14195+.PZB
14196+.PfA
14197+.PiA
14198+.PjA
1418714199 .PkA
1418814200 .PmA
14189-.PrA
14190-.PrB
14191-.PsA
14192-.PvA
14193-.PzA
1419414201 .[?setRed@QColor@@QEAAXH@Z
1419514202 .\r?hideEvent@QMenu@@MEAAXPEAVQHideEvent@@@Z
1419614203 .\v?event@QAbstractItemView@@MEAA_NPEAVQEvent@@@Z
@@ -14209,17 +14216,22 @@ $x(<*L(^$*.d$40.2Z$D6@$Q
1420914216 .kv3
1421014217 .lua
1421114218 .nav
14212-.pLB
14213-.pMA
14219+.pCA
14220+.pFA
14221+.pKB
14222+.pLA
14223+.pRB
14224+.pSA
14225+.pYB
14226+.pbA
14227+.pfA
1421414228 .pfm
14215-.plA
14229+.pjA
14230+.pkA
1421614231 .png
14217-.pqA
14218-.psA
1421914232 .psd
1422014233 .psd | .png
1422114234 .psd | .png | .jpg | .tga | .tif | .tiff
14222-.puA
1422314235 .selfBnds
1422414236 .svg
1422514237 .tga
@@ -14284,14 +14296,15 @@ $x(<*L(^$*.d$40.2Z$D6@$Q
1428414296 08@HR
1428514297 08@JP
1428614298 08@N
14287-08X&
14299+08F0WA
1428814300 0:Py\t
14301+0>@IB
1428914302 0B2P
1429014303 0L.x
1429114304 0\f?focusOutEvent@QGraphicsView@@MEAAXPEAVQFocusEvent@@@Z
1429214305 0\fU04i
1429314306 0\r%0t
14294-0lY&
14307+0dm&
1429514308 0x%llx
1429614309 1 additional asset reference to a moved asset was found:<br>
1429714310 1 component
@@ -14398,7 +14411,6 @@ $x(<*L(^$*.d$40.2Z$D6@$Q
1439814411 2collapsed( const QModelIndex & )
1439914412 2doubleClicked( const QModelIndex & )
1440014413 2expanded( const QModelIndex & )
14401-2l5&
1440214414 2mapped(bool)
1440314415 2mapped(int)
1440414416 2modelSortOrderChanged( int, bool )
@@ -14436,37 +14448,34 @@ $x(<*L(^$*.d$40.2Z$D6@$Q
1443614448 5;FJ$,XEK4<
1443714449 5\v?event@QCheckBox@@MEAA_NPEAVQEvent@@@Z
1443814450 5sfm_v8
14439-6 EA
14440-60HA
14441-60TA
14442-60TB
14443-60VA
14444-60fB
14445-60hA
14446-60zA
14447-60{B
14451+6 JA
14452+6 oA
14453+60UA
14454+60fA
1444814455 64 283 0
1444914456 668v::4
14450-6@OB
14451-6@gB
14452-6@mB
14453-6@xB
14457+6@DA
14458+6@EA
14459+6@LA
14460+6@NA
14461+6@nA
14462+6@uB
14463+6@zA
1445414464 6L8N6t0$:
14455-6PHB
14456-6PRB
14457-6PbA
14458-6PyA
14459-6P}A
14465+6P?B
14466+6PPA
14467+6PVA
14468+6P^B
14469+6P{B
1446014470 6[?setRenderHint@QPainter@@QEAAXW4RenderHint@1@_N@Z
14461-6`TA
14471+6`GA
14472+6`HA
1446214473 6`XA
14463-6`oA
14474+6`bA
14475+6`kB
14476+6`nB
1446414477 6f:bF
14465-6p]A
14466-6pdB
14467-6pnB
14468-6ptA
14469-6pzA
14478+6pEA
1447014479 7&F|If
1447114480 7T2,
1447214481 7\f?focusOutEvent@QPushButton@@MEAAXPEAVQFocusEvent@@@Z
@@ -14480,6 +14489,7 @@ $x(<*L(^$*.d$40.2Z$D6@$Q
1448014489 8@HPX`hp~
1448114490 8@HV
1448214491 8BlHFL
14492+8F@pB
1448314493 8H:88
1448414494 8]?size@QPixmap@@QEBA?AVQSize@@XZ
1448514495 8d"*$n&h"&$
@@ -14688,17 +14698,17 @@ $x(<*L(^$*.d$40.2Z$D6@$Q
1468814698 <pair_a>
1468914699 <pair_b>
1469014700 <unnamed>
14691-=(0hA
1469214701 == PulseGraphDef ==\n
1469314702 ============================================\n
1469414703 ========================================\nNew Pose Recipe Max Size\nNumOps: %i\nBuffer Used: %i\nPose Operations:\n
1469514704 >"?IsValid@FbxProperty@fbxsdk@@QEBA_NXZ
1469614705 >(<:@JB:@ZD"@L<:F>
14697->0mA
14706+>0iB
1469814707 >B@h>T@pD>F:JfHbJ
1469914708 >JUMP
14700->PYA
14701->pqB
14709+>pNB
14710+>pPA
14711+>phB
1470214712 ??0Connection@QMetaObject@@QEAA@AEBV01@@Z
1470314713 ??0FbxProperty@fbxsdk@@QEAA@AEBV01@@Z
1470414714 ??0FbxProperty@fbxsdk@@QEAA@XZ
@@ -15569,20 +15579,17 @@ $x(<*L(^$*.d$40.2Z$D6@$Q
1556915579 @&*(**&,b*t
1557015580 @&*(**&,b*~
1557115581 @2Py\t
15572-@60jB
15573-@6@KB
15574-@6`XA
15575-@6pIB
15576-@6pKB
15577-@6p^A
15582+@60XA
1557815583 @8@HV
15579-@HPX`hv _B
15584+@>0PB
15585+@HPX`hvp_B
1558015586 @Integer overflow in %s
1558115587 @V@const char *__cdecl Reflection::Internal::GetFuncName<class IPairedSequenceComponentInstance>(void)
1558215588 @\*^*`&bl`p
1558315589 @\v?event@QFrame@@MEAA_NPEAVQEvent@@@Z
1558415590 @`hpx
1558515591 @const char *__cdecl Reflection::Internal::GetFuncName<class ILookComponentInstance>(void)
15592+@f`dA
1558615593 @fff>fff>fff>fff>
1558715594 @m_nParticle
1558815595 @spawn
@@ -15644,7 +15651,6 @@ ARRAY_PARENT_ONLY
1564415651 ATTACHMENT_INFLUENCE_FLAGS_NONE
1564515652 ATTR_NAME__ADD_CUSTOM_TAG
1564615653 A\r@H1
15647-A\t>pgA
1564815654 AbcGeom_FaceSet_v1
1564915655 AbcGeom_PolyMesh_v1
1565015656 Abs Float
@@ -18936,6 +18942,7 @@ Extrude Twist
1893618942 ExtrudeReplaceHull failed to build new convex hull with extrusion %f\n
1893718943 F(H$J2
1893818944 F0"2(
18945+F0sB
1893918946 F8HbF<H"L N
1894018947 FBX
1894118948 FBX file version %d.%d.%d - %s\n
@@ -18955,7 +18962,6 @@ F\v?event@QGroupBox@@MEAA_NPEAVQEvent@@@Z
1895518962 F_BLOOD_USE_UV2
1895618963 F_TEXTURE_FORMAT
1895718964 F_TEXTURE_FORMAT2
18958-F`eB
1895918965 Face %d
1896018966 Face Down Path
1896118967 Face Fit
@@ -20166,8 +20172,6 @@ LowPrecisionUv
2016620172 LowPrecisionUv1
2016720173 LowercaseBoneNames
2016820174 Lowest
20169-M 0hA
20170-M)0hA
2017120175 MAPCLASS_ERROR
2017220176 MATCHES FILTER
2017320177 MATERIAL_ATTRIBUTE:%s_%i
@@ -21022,9 +21026,7 @@ P4 delete of source successful
2102221026 P4 edit successful
2102321027 P4 integrate (overwrite) and edit
2102421028 P4 revert and delete of CONTENT file successful
21025-P6 ZB
21026-P60xB
21027-P8X&
21029+P6pZB
2102821030 P?isValid@QColor@@QEBA_NXZ
2102921031 P?jumpToNextImage@QImageReader@@QEAA_NXZ
2103021032 PARENT
@@ -21047,7 +21049,6 @@ PS_RTX
2104721049 PURH
2104821050 PVRTTJX`VTXr
2104921051 P\v5Pd
21050-P^0dA
2105121052 PackBits
2105221053 PackBitsDecode: Not enough data for scanline %ld
2105321054 PackBitsDecode: discarding %ld bytes to avoid buffer overrun
@@ -21130,6 +21131,7 @@ Pathing EQ for low, mid, and high frequency bands.
2113021131 Pathing Probe
2113121132 Pathing coefficients for 1st order Ambisonics.
2113221133 PauseGameOnActivate
21134+Pdm&
2113321135 Peak Cycle
2113421136 Peak Frame
2113521137 Peak Frame Number
@@ -21231,7 +21233,6 @@ Pitch Friction
2123121233 PivotPaint
2123221234 PivotToolSnapToBBox
2123321235 PixarLog
21234-PlY&
2123521236 Place
2123621237 Place On Attachment
2123721238 Place On Bone
@@ -21501,7 +21502,9 @@ RIGID
2150121502 ROTATION
2150221503 RSDSZ
2150321504 RT60 for low, mid, and high frequency bands for the probe.
21505+R\npdm&
2150421506 R\t?canFetchMore@QAbstractItemModel@@UEBA_NAEBVQModelIndex@@@Z
21507+R\vpdm&
2150521508 R_T5Y
2150621509 Rad2 Deg
2150721510 Radial Basis Function Type
@@ -21761,6 +21764,7 @@ Rigid
2176121764 Rigid Body Weight
2176221765 Rigid Constraint
2176321766 Rigid Edge Hinges
21767+Rigid Weight to '%s'
2176421768 Rigid Weight to Bone
2176521769 Root Bone
2176621770 Root Bone Name
@@ -23038,9 +23042,10 @@ Using deprecated 'base=prefix' syntax for adding a prefix to a base class
2303823042 Using worldspawn entity targetname of 'worldspawn' will not have entity name fixup and might produce confusing results!\n
2303923043 UsingAnimgraph
2304023044 Utility
23041-V oA
23042-V0HB
23045+V0@A
23046+V0mA
2304323047 V?redF@QColor@@QEBANXZ
23048+V@rA
2304423049 VCS3 %s Load Failure: Could not find DATA block\n
2304523050 VData:%s
2304623051 VDataChoice( %s )
@@ -23074,7 +23079,6 @@ VNotify Abandoned (Not enabled)\n
2307423079 VNotify Sent\n
2307523080 VNotify StartProcess failed!\n
2307623081 VNotify: %s\n
23077-VP^A
2307823082 VSNAP
2307923083 VSNAP Node needs either a node name or explicit output resource
2308023084 VSNAP that doesn't load a file and starts off with a set of reasonable default streams
@@ -23089,6 +23093,8 @@ VULKAN
2308923093 VZ#-DLU[3=h
2309023094 V\nPy\t
2309123095 V^J>XXJ
23096+V`vB
23097+V`wB
2309223098 Valid Content Absolute Path
2309323099 Valid External Path
2309423100 Valid Game Absolute Path
@@ -23196,7 +23202,7 @@ VolumetricFog
2319623202 Voronoi Plane Primitive
2319723203 Vortices
2319823204 Voxel volume (%i components)
23199-VprA
23205+VpoA
2320023206 W?scaled@QPixmap@@QEBA?AV1@AEBVQSize@@W4AspectRatioMode@Qt@@W4TransformationMode@4@@Z
2320123207 WARNING content and game files are in different mods:
2320223208 WARNING: %d Assets have references to this asset that will be broken.
@@ -23417,7 +23423,6 @@ ZoomSensitivityMouseWheel
2341723423 \\v?event@QScrollBar@@UEAA_NPEAVQEvent@@@Z
2341823424 \f"?update@QWidget@@QEAAXXZ
2341923425 \f$?ParseForGlobalSettings@FbxImporter@fbxsdk@@QEAAX_N@Z
23420-\f0hA
2342123426 \f?cubicTo@QPainterPath@@QEAAXAEBVQPointF@@00@Z
2342223427 \f?data@QModelIndex@@QEBA?AVQVariant@@H@Z
2342323428 \f?detach@QListData@@QEAAPEAUData@1@H@Z
@@ -23449,12 +23454,10 @@ ZoomSensitivityMouseWheel
2344923454 \f?hasHeightForWidth@QWidget@@UEBA_NXZ
2345023455 \f\f?focusInEvent@QLabel@@MEAAXPEAVQFocusEvent@@@Z
2345123456 \f\tV_acosd
23452-\fp\vPlY&
23453-\fzzJ
23457+\fpdm&
2345423458 \n%.1fMB
2345523459 \n*** Error masking unused parts! Unknown text found. This is usually caused by a '{' or '}' not tabbed properly or an invalid declaration at the global scope. (line %d):\n%s\n\n
2345623460 \n*** Found variable "%s" multiple times in %s!\n\n
23457-\n0yA
2345823461 \n4"T$,&^*j\nD,..Z0f,
2345923462 \n4@VB.D^Hr\nDJ.L\NhJ
2346023463 \n4TVV.X^\r\nD^.`\bh^
@@ -23491,6 +23494,7 @@ ZoomSensitivityMouseWheel
2349123494 \nERROR: EXCEPTION:\n
2349223495 \nERROR: UNKNOWN EXCEPTION\n
2349323496 \nNo game entities will be available for creation.\n
23497+\nPdm&
2349423498 \nS?moveTo@QPainterPath@@QEAAXAEBVQPointF@@@Z
2349523499 \nVCS file format is invalid for %s\n
2349623500 \nVCS file version is %d instead of %d for %s\n
@@ -23501,7 +23505,7 @@ ZoomSensitivityMouseWheel
2350123505 \ng_flConfigMaxCoord
2350223506 \njPy\t
2350323507 \r%s(%d): error: %s
23504-\r0hA
23508+\r0OB
2350523509 \r?darker@QColor@@QEBA?AV1@H@Z
2350623510 \r?event@QObject@@UEAA_NPEAVQEvent@@@Z
2350723511 \r?eventFilter@QObject@@UEAA_NPEAV1@PEAVQEvent@@@Z
@@ -23519,10 +23523,9 @@ ZoomSensitivityMouseWheel
2351923523 \rModelDoc
2352023524 \r\f?focusInEvent@QLineEdit@@MEAAXPEAVQFocusEvent@@@Z
2352123525 \r\r?heightForWidth@QGridLayout@@UEBAHH@Z
23522-\r\v0hA
23526+\r_z000.
2352323527 \rtext
2352423528 \src\shaders\
23525-\t0hA
2352623529 \t?addPixmap@QIcon@@QEAAXAEBVQPixmap@@W4Mode@1@W4State@1@@Z
2352723530 \t?addRoundedRect@QPainterPath@@QEAAXAEBVQRectF@@NNW4SizeMode@Qt@@@Z
2352823531 \t?alphaF@QColor@@QEBANXZ
@@ -23535,6 +23538,7 @@ ZoomSensitivityMouseWheel
2353523538 \t@@@@@@@@@@@@@@@@{N{N{N{N{N{N{N{N
2353623539 \tError\n
2353723540 \tNAN encountered in element '%s' guid %s attribute '%s'!\n
23541+\tPoA
2353823542 \tV_ZSTD_decompress
2353923543 \tV_asind
2354023544 \tV_atan2d
@@ -23577,16 +23581,11 @@ ZoomSensitivityMouseWheel
2357723581 \v?extension@QGraphicsPathItem@@MEBA?AVQVariant@@AEBV2@@Z
2357823582 \v?extension@QGraphicsRectItem@@MEBA?AVQVariant@@AEBV2@@Z
2357923583 \v\f?focusInEvent@QGroupBox@@MEAAXPEAVQFocusEvent@@@Z
23580-\vplY&
23581-\vrzJ
23582-]&0hA
23584+\vpdm&
2358323585 ^&h2:8$6X($&$0*
23584-^0XA
2358523586 ^0`l^VJU
23586-^0sA
2358723587 ^L7B
23588-^PHB
23589-^PhA
23588+^PWA
2359023589 ^\f?forceShow@QProgressDialog@@IEAAXXZ
2359123590 ^pJA
2359223591 ^v5\n^v5\n^v5\n^v5\n
@@ -23682,17 +23681,14 @@ _temp_tangent
2368223681 _volumeatlas_
2368323682 _wjb
2368423683 _z%%0%dd.%s
23685-_z000.
23684+_z00.
2368623685 _zero
2368723686 `0bb``*Ff6h
2368823687 `2Py\t
23689-`2zJ
2369023688 `4Py\t
23691-`60ZA
23692-`60cA
23693-`6@SB
23694-`6`uB
23695-`6p_A
23689+`6 MB
23690+`60MB
23691+`6PBA
2369623692 `\f?defaultTypeFor@QTimer@@CA?AW4TimerType@Qt@@H@Z
2369723693 `\tV_logd
2369823694 `jPy\t
@@ -23958,6 +23954,7 @@ bOrientAlongLine
2395823954 bPreEvaluatePassthroughTransitionPath
2395923955 bPreviewOnly
2396023956 bPrioritizeUp
23957+bPv$
2396123958 bPy\t
2396223959 bReset
2396323960 bResetOnChange
@@ -25361,16 +25358,13 @@ extrude_twist
2536125358 eyeOffset
2536225359 eyelid
2536325360 eyes
25364-f PA
25365-f RA
25366-f cB
25361+f nA
2536725362 f$&&$$f(***,&.b,~0F
25368-f0hA
25363+fPGB
2536925364 fSpeedScale
2537025365 f\n?dragEnterEvent@QAbstractScrollArea@@MEAAXPEAVQDragEnterEvent@@@Z
2537125366 f_movement_current_speed
2537225367 f_movement_target_speed
25373-f`EA
2537425368 faceData
2537525369 faceDataIndices
2537625370 faceEdgeIndices
@@ -25559,8 +25553,9 @@ force_world_collision_on_all_nodes
2555925553 forcemultitrack
2556025554 forever
2556125555 forwardParity
25562-fp`A
25563-fpgA
25556+fpPA
25557+fpRA
25558+fpcB
2556425559 fr\nDh.j\lhh
2556525560 frac
2556625561 frame %s{r=0},%s{g=a},%s{b=0},%s{a=a} %s
@@ -25752,7 +25747,6 @@ gs_5_0
2575225747 gs_6_0
2575325748 guide_hair_count
2575425749 gun_grunge.psd
25755-h.\nP0
2575625750 hS%s SceneWorld AllViews
2575725751 h\r?horizontalScrollbarAction@QTreeView@@MEAAXH@Z
2575825752 hair_count
@@ -26221,6 +26215,7 @@ lower_hemisphere_is_black
2622126215 lowprecisionuv
2622226216 lowprecisionuv1
2622326217 lumpMode
26218+m\t oA
2622426219 m_ActiveValue
2622526220 m_AdditionalInputDependencies
2622626221 m_AdditionalRelatedFiles
@@ -26826,10 +26821,7 @@ multilevel
2682626821 multilevelchannel
2682726822 must be either LogLUV or LogL
2682826823 mute
26829-n pB
26830-n rB
2683126824 n$Kx
26832-n0zB
2683326825 nApplyMode
2683426826 nAscending
2683526827 nColumn
@@ -26849,9 +26841,9 @@ nLodLevel
2684926841 nMaxElements
2685026842 nNoHitResult
2685126843 nOriginSpace
26844+nPWA
2685226845 nPathSpace
2685326846 nPickMode
26854-nPlB
2685526847 nPlacementMode
2685626848 nPointSpace
2685726849 nPriority
@@ -26941,6 +26933,8 @@ note
2694126933 npc_ability_name
2694226934 npcclass
2694326935 npcclip
26936+nppB
26937+nprB
2694426938 null FbxMaterial
2694526939 null VP8Io passed to VP8GetHeaders()
2694626940 numDivisionsY
@@ -27057,15 +27051,11 @@ overwrite_existing_flags_only
2705727051 ownerlog
2705827052 owns_polymorphic_data
2705927053 p2Py\t
27060-p2|N
27061-p6pjB
27062-p8X&
27054+p6`PB
2706327055 p:Py\t
27064-p>pDA
2706527056 pAsset
2706627057 pCheckpointName
2706727058 pDescription
27068-pF@=B
2706927059 pMaterialGroupName
2707027060 pModelResourceName
2707127061 pTagName
@@ -27146,6 +27136,7 @@ pathnodeclass
2714627136 pattern
2714727137 payload_path_marker
2714827138 pbPy\t
27139+pdm&
2714927140 peak
2715027141 peak_attr
2715127142 peak_cycle
@@ -27199,7 +27190,6 @@ pitch_friction
2719927190 pitch_stiffness
2720027191 pivotOffset
2720127192 pixelAspectRatio
27202-plY&
2720327193 place_on_floor
2720427194 placementOrigin
2720527195 placementattachment
@@ -27364,6 +27354,7 @@ r04(*
2736427354 rFdD>F@LdJ>L
2736527355 rPy\t
2736627356 rT:V*X&Z>X
27357+r\fpdm&
2736727358 r\n?dragLeaveEvent@QGraphicsItem@@MEAAXPEAVQGraphicsSceneDragDropEvent@@@Z
2736827359 r\vp!4
2736927360 rad2deg
@@ -28490,6 +28481,7 @@ usesLaggedValues
2849028481 uses_range
2849128482 uvmapcylinder
2849228483 v %f %f %f\n#%d ComponentIndex %d, queue %d, angle %.1f; ring:
28484+v0yB
2849328485 vAlignDirection
2849428486 vEnd
2849528487 vForward
@@ -28745,15 +28737,10 @@ zip_line_node
2874528737 {\n?dragLeaveEvent@QWidget@@MEAAXPEAVQDragLeaveEvent@@@Z
2874628738 {error}
2874728739 {mod}dev/move_assetcache_temp.data
28748-}#0hA
28749-}\r0pA
2875028740 }\tV_sinhf
28751-~0HB
28752-~0YB
28753-~0tA
2875428741 ~CGenericFilter
2875528742 ~CMapDoc destructor: Leaking physics world because there are still ModelInstances that use it.\n
2875628743 ~CModelInstance destructor: leaking softbody because physics world disappeared\n
2875728744 ~\n?dragMoveEvent@QAbstractScrollArea@@MEAAXPEAVQDragMoveEvent@@@Z
28758-~pDA
28745+~pjA
2875928746 ~}|{zyxwvutsrqponmlkjihgfedcba`_^]\[ZYXWVUTSRQPONMLKJIHGFEDCBA@?>=<;:9876543210/.-,+*)('&%$#"!
M
game/bin/win64/cs_mdl_import.exe_strings.txt
+170-150
@@ -7083,57 +7083,67 @@ $prefix_element$
70837083 .vpk:
70847084 .vvd
70857085 .webp
7086-02V@
7086+00O@
7087+01S@
70877088 04I@
7088-04R@
7089-06A@
7090-06U@
7091-06k@
7092-0>Ym
7093-0B7@
7089+04S@
7090+07S@
7091+07U@
7092+0C3@
7093+0C5@
7094+0CS@
70947095 0Cy@
70957096 0D7@
7096-0E9@
7097+0Do}
70977098 0EV@
7099+0HS@
7100+0I0@
70987101 0JO@
7099-0JU@
7100-0KQ@
7101-0P7@
7102-0QM@
7103-0R6@
7104-0SU@
7105-0V2@
7106-0VV@
7107-0WS@
7108-0YB@
7109-0ZC@
7102+0JQ@
7103+0L3@
7104+0MS@
7105+0OV@
7106+0QB@
7107+0R0@
7108+0SV@
7109+0TC@
7110+0UI@
7111+0Ue@
7112+0WV@
7113+0XC@
7114+0XU@
71107115 0ZI@
7116+0Zy@
71117117 0\r%0t
7112-0aH@
7113-0b3@
7114-0b6@
7115-0bS@
7118+0a8@
71167119 0cQ@
7117-0cV@
7118-0dT@
7119-0eL@
7120-0ez@
7121-0f4@
7122-0h9@
7120+0cy@
7121+0d0@
7122+0dS@
71237123 0hQ@
7124-0k3@
7125-0kQ@
7126-0l6@
7127-0l7@
7128-0pK@
7129-0r5@
7130-0sO@
7131-0sU@
7132-0tz@
7133-0u5@
7134-0v9@
7124+0hy@
7125+0j7@
7126+0kK@
7127+0kL@
7128+0m0@
7129+0mC@
7130+0my@
7131+0n5@
7132+0pU@
7133+0rI@
7134+0s5@
7135+0sN@
7136+0t2@
7137+0v0@
7138+0v5@
71357139 0vI@
7140+0vK@
7141+0wI@
71367142 0x%llx
7143+0y9@
7144+0yT@
7145+0z9@
7146+0zG@
71377147 16-byte data pool
71387148 180_recovery
71397149 1D Blend Has No Referenced Animations
@@ -7146,8 +7156,11 @@ $prefix_element$
71467156 2DBlend
71477157 2DBlendEditor
71487158 2DBlendFromAnimation
7159+2\vpDo}
7160+2\vph
71497161 2_BONE_IK
71507162 4-byte data pool
7163+4RU@
71517164 4\r54t
71527165 5;FJ$,XEK4<
71537166 5sfm_v8
@@ -10223,6 +10236,7 @@ LODGroupList
1022310236 LODGroupReplacements
1022410237 LR Offset in FLU local space
1022510238 LR control point number
10239+LRU@
1022610240 LZWDecode: Bogus encoding, loop in the code table; scanline %d
1022710241 LZWDecode: Corrupted LZW table at scanline %d
1022810242 LZWDecode: Not enough data at scanline %d (short %ld bytes)
@@ -10967,46 +10981,47 @@ Overrides the target VSNAP resource (defaults to "particles/models/%model_name%/
1096710981 Overwrite all bone data
1096810982 Overwrite existing flags only
1096910983 Overwriting existing wrinkle map data on mesh
10970-P2V@
10971-P2e@
10972-P3R@
10984+P1E@
10985+P3I@
10986+P4A@
10987+P4I@
1097310988 P4V@
10974-P4m}
10975-P5O@
10976-P5V@
10977-P6f@
10989+P5A@
10990+P7U@
10991+P8U@
10992+P9O@
10993+PAR@
1097810994 PARENT
10979-PBQ@
10980-PBy@
1098110995 PD7@
10982-PD8@
10983-PFQ@
10996+PEV@
10997+PFV@
1098410998 PF\n%d %d\n-1.000000\n
1098510999 PHY Import: Invalid solid index %d in keyvalues\n
1098611000 PHY Import: Solid with index %d is defined twice!\n
10987-PIH@
10988-PLT@
10989-PLU@
11001+PIQ@
11002+PJ0@
11003+PJQ@
11004+PJU@
11005+PMC@
1099011006 PMO@
1099111007 POSE_SPACE_BONE
1099211008 POSE_SPACE_MORPH
10993-POU@
10994-PP7@
10995-PPS@
11009+PPV@
1099611010 PQ8@
10997-PSU@
11011+PQS@
11012+PR2@
11013+PR6@
11014+PS0@
11015+PTL@
11016+PU3@
1099811017 PURH
10999-PUT@
11000-PVU@
11001-PVV@
11002-PVz@
11003-PWI@
11004-PXQ@
11005-PXS@
11006-PYB@
11007-PYU@
11008-PZy@
11009-Pa6@
11018+PUV@
11019+PWQ@
11020+PXV@
11021+PYS@
11022+PZI@
11023+PaI@
11024+PaK@
1101011025 PaQ@
1101111026 PackBits
1101211027 PackBitsDecode: Not enough data for scanline %ld
@@ -11053,11 +11068,12 @@ ParticleImport
1105311068 ParticleParamID_t
1105411069 ParticlesLib
1105511070 Pass Outflow
11056-Pb6@
11057-Pc3@
11058-PcS@
11059-Pcy@
11060-PdO@
11071+PbK@
11072+PbV@
11073+PcK@
11074+PdK@
11075+Pe0@
11076+PeS@
1106111077 Peak Cycle
1106211078 Peak Frame
1106311079 Peak Frame Number
@@ -11068,9 +11084,7 @@ Perforce
1106811084 Perform a set of parametric mesh modification operations.
1106911085 Persistent
1107011086 Perturb vertex positions using sine waves.
11071-Pf4@
1107211087 PfQ@
11073-PfV@
1107411088 Pf\n%d %d\n-1.000000\n
1107511089 Photometric tag is missing, assuming data is YCbCr
1107611090 Photometric tag value assumed incorrect, assuming data is YCbCr instead of RGB
@@ -11110,7 +11124,6 @@ PhysicsShapeHullPrimitive
1111011124 PhysicsShapeList
1111111125 PhysicsShapeReplacements
1111211126 PhysicsSurfaceProperties
11113-Pi7@
1111411127 PiU@
1111511128 Pick 3 target cloth nodes
1111611129 Pick Target Cloth Nodes:
@@ -11153,11 +11166,10 @@ Pitch Yaw Roll
1115311166 Pitch Yaw Roll Max
1115411167 PivotPaint
1115511168 PixarLog
11156-PjI@
11157-Pk7@
11158-PkI@
11159-Pkz@
11160-PlI@
11169+PjT@
11170+Pjz@
11171+PkQ@
11172+Pl5@
1116111173 Place On Attachment
1116211174 Place On Bone
1116311175 Place on Floor
@@ -11173,9 +11185,10 @@ Plane Primitive
1117311185 Plastic
1117411186 Plasticity
1117511187 Play End Cap Effect
11176-PmI@
11177-PmU@
11178-Pn6@
11188+Plz@
11189+PmK@
11190+Pn0@
11191+PoO@
1117911192 Point 0
1118011193 Point 1
1118111194 Point Bones At
@@ -11224,10 +11237,7 @@ Positions in grid
1122411237 PosterSettings
1122511238 Posture
1122611239 Power scale for applying the supplemental ambient occlusion map.
11227-Pp5@
11228-PpL@
11229-PrI@
11230-PrK@
11240+PqN@
1123111241 Pre-Age Noise
1123211242 Pre-Clear Selection
1123311243 Precision Degrees
@@ -11281,19 +11291,19 @@ Project on World
1128111291 Projected Primitive
1128211292 PropWorldOrigin
1128311293 Prune pieces < error threshold
11284-Ps5@
11285-PsI@
11286-PtQ@
11287-Pu5@
11288-PuO@
11294+PtK@
11295+Ptc@
1128911296 Pull towards control point
1129011297 Pulse domain which enables particle content to query leaf code to introspect game state.
1129111298 Push Out
1129211299 Push mesh faces outward along their local normal. Optionally build shell geometry.
11293-Py9@
11294-PzG@
11295-Pze@
11296-Pzz@
11300+Puy@
11301+Pv5@
11302+PvC@
11303+Px4@
11304+Px5@
11305+Py4@
11306+PyK@
1129711307 QAngle
1129811308 Quad Bend Tolerance
1129911309 Quadratic
@@ -11599,6 +11609,7 @@ Right pose, i.e. frame 2 from the 3 frame turn animation file with frame 1 subtr
1159911609 RightFingers
1160011610 Rigid
1160111611 Rigid Edge Hinges
11612+Rigid Weight to '%s'
1160211613 Rigid Weight to Bone
1160311614 Root Bone
1160411615 Root Bone Name
@@ -12077,6 +12088,7 @@ TIFFTileRowSize
1207712088 TIFFVStripSize
1207812089 TIFFVTileSize
1207912090 TILT_TWIST
12091+TSV@
1208012092 TWIST
1208112093 Tag
1208212094 Tag %d
@@ -12585,6 +12597,7 @@ X32_TYPELESS_G8X24_UINT
1258512597 XClipPathUnits
1258612598 XMLPacket
1258712599 XPosition
12600+XRU@
1258812601 XResolution
1258912602 XYZ, Luv
1259012603 Y (Green / Left)
@@ -13330,6 +13343,7 @@ cutoff_radius
1333013343 cycle_type
1333113344 cyclestart
1333213345 cylinder
13346+dRU@
1333313347 damage_direction_cp
1333413348 damage_position_cp
1333513349 damping
@@ -14628,38 +14642,55 @@ overwrite_existing_flags_only
1462814642 ownerlog
1462914643 owns_polymorphic_data
1463014644 p0V@
14631-p1y@
14632-p2R@
14645+p0e@
14646+p21@
14647+p2V@
14648+p2f@
14649+p3S@
14650+p4V@
1463314651 p4lib
14634-p4m}
14635-p5V@
14636-p6e@
14637-p7T@
14638-p7z@
14639-p9R@
14640-pAB@
14652+p57@
14653+p6S@
14654+p75@
14655+p7O@
14656+p87@
14657+p88@
14658+p8U@
14659+p9S@
14660+pA4@
14661+pAL@
1464114662 pCheckpointName
14663+pCy@
14664+pD7@
1464214665 pD9@
14643-pDO@
14666+pDS@
1464414667 pDescription
14645-pIR@
14668+pF5@
14669+pFV@
14670+pGV@
14671+pIQ@
14672+pIS@
14673+pJQ@
14674+pK0@
1464614675 pKO@
1464714676 pKV@
14648-pLU@
14649-pP6@
14650-pP7@
14651-pPQ@
14652-pQU@
14653-pQe@
14654-pRM@
14655-pTS@
14656-pTU@
14677+pO5@
14678+pOQ@
14679+pPU@
14680+pQ8@
14681+pRU@
14682+pS2@
14683+pSU@
14684+pT0@
14685+pTV@
1465714686 pTagName
14658-pW2@
14659-pWI@
14687+pUS@
14688+pVH@
14689+pVI@
14690+pWH@
14691+pXH@
14692+pXV@
1466014693 pY9@
14661-pYB@
14662-pYU@
1466314694 paV@
1466414695 panorama_image
1466514696 panorama_layout
@@ -14703,10 +14734,8 @@ pathclass
1470314734 pathnode
1470414735 pathnodeclass
1470514736 pattern
14706-pd3@
14737+pcC@
1470714738 pdQ@
14708-pdS@
14709-pdz@
1471014739 peak
1471114740 peak_attr
1471214741 peak_cycle
@@ -14715,10 +14744,8 @@ per particle
1471514744 per_material_options
1471614745 permissive
1471714746 pervertexlighting
14718-pez@
14719-pf4@
14720-pgy@
14721-phO@
14747+pf0@
14748+pfS@
1472214749 phonememap
1472314750 phys
1472414751 physicsSimplificationError
@@ -14754,11 +14781,9 @@ pitch_friction
1475414781 pitch_stiffness
1475514782 pivotOffset
1475614783 pixelAspectRatio
14757-pjC@
14758-pjz@
14759-pl6@
14760-pl7@
14761-plV@
14784+pjU@
14785+pjV@
14786+pl5@
1476214787 place_on_floor
1476314788 placementOrigin
1476414789 placementattachment
@@ -14768,9 +14793,10 @@ plane
1476814793 plastic
1476914794 plasticity
1477014795 playerclip
14771-ply@
14772-plz@
14773-pnU@
14796+pmz@
14797+po0@
14798+po5@
14799+poK@
1477414800 point
1477514801 point0_key
1477614802 point1_key
@@ -14858,25 +14884,19 @@ propattr_force_readonly
1485814884 propattr_stretch_editor_into_label_column
1485914885 propdataname
1486014886 prune
14861-psM@
1486214887 pseudo-
14863-pt1@
14864-pt5@
14865-ptI@
14888+psy@
14889+ptG@
14890+pu5@
14891+puc@
1486614892 pulse_node_custom_attributes
1486714893 pulse_runtime_lib
1486814894 pushout_strength
14869-pvC@
14870-pvI@
1487114895 pvTarget
14872-pwN@
14873-pwO@
14874-pxQ@
14875-pxz@
14876-py6@
14896+pwK@
14897+pxC@
1487714898 py9@
14878-pz9@
14879-pzN@
14899+pyA@
1488014900 qangle log
1488114901 qangle_array
1488214902 quad
M
game/bin/win64/modeldoc_utils_strings.txt
+18-13
@@ -7335,9 +7335,9 @@ $prefix_element$
73357335 .webp
73367336 .xform
73377337 // FRAMERATE=%f
7338-0\fan
7338+0<zn
7339+0\an
73397340 0\r%0t
7340-0tzn
73417341 0x%llx
73427342 16-byte data pool
73437343 180_recovery
@@ -7353,7 +7353,7 @@ $prefix_element$
73537353 2DBlendEditor
73547354 2DBlendFromAnimation
73557355 2\n??9FbxDataType@fbxsdk@@QEBA_NAEBV01@@Z
7356-2\vptzn
7356+2\vpx
73577357 2_BONE_IK
73587358 4-byte data pool
73597359 4\r54t
@@ -11683,6 +11683,7 @@ Overwrite all bone data
1168311683 Overwrite existing flags only
1168411684 Overwriting existing wrinkle map data on mesh
1168511685 P'?SetBoolProp@FbxIOSettings@fbxsdk@@QEAAXPEBD_N@Z
11686+P<zn
1168611687 PARENT
1168711688 PF\n%d %d\n-1.000000\n
1168811689 PHY Import: Invalid solid index %d in keyvalues\n
@@ -11691,7 +11692,7 @@ PHY file empty, zero hulls found: %s.
1169111692 POSE_SPACE_BONE
1169211693 POSE_SPACE_MORPH
1169311694 PURH
11694-P\fan
11695+P\an
1169511696 PackBits
1169611697 PackBitsDecode: Not enough data for scanline %ld
1169711698 PackBitsDecode: discarding %ld bytes to avoid buffer overrun
@@ -11947,8 +11948,6 @@ Project on World
1194711948 Projected Primitive
1194811949 PropWorldOrigin
1194911950 Prune pieces < error threshold
11950-Ptdn
11951-Ptzn
1195211951 Pull towards control point
1195311952 Pulse domain which enables particle content to query leaf code to introspect game state.
1195411953 Push Out
@@ -12027,6 +12026,10 @@ RBF Based Anim Constraint
1202712026 RGB blend weight for sequence 0
1202812027 RGB blend weight for sequence 1
1202912028 ROTATION
12029+R\fpx
12030+R\np<zn
12031+R\vp<zn
12032+R\vpx
1203012033 R_T5Y
1203112034 Rad2 Deg
1203212035 Radial Basis Function Type
@@ -12266,6 +12269,7 @@ Right pose, i.e. frame 2 from the 3 frame turn animation file with frame 1 subtr
1226612269 RightFingers
1226712270 Rigid
1226812271 Rigid Edge Hinges
12272+Rigid Weight to '%s'
1226912273 Rigid Weight to Bone
1227012274 Rigid model with multiple physics bodies?!
1227112275 Root Bone
@@ -13390,7 +13394,7 @@ Zero skin weights on one or more vertices
1339013394 [procedural]
1339113395 \f$?ParseForGlobalSettings@FbxImporter@fbxsdk@@QEAAX_N@Z
1339213396 \f\tV_acosd
13393-\fp\v`tzn
13397+\fp<zn
1339413398 \instances\
1339513399 \maps\
1339613400 \materialsrc\
@@ -13400,6 +13404,7 @@ Zero skin weights on one or more vertices
1340013404 \n??AFbxQuaternion@fbxsdk@@QEBAAEBNH@Z
1340113405 \nERROR: EXCEPTION:\n
1340213406 \nERROR: UNKNOWN EXCEPTION\n
13407+\nP<zn
1340313408 \ndummyfilename.tif
1340413409 \ng default\n
1340513410 \prefabs\
@@ -13422,7 +13427,8 @@ Zero skin weights on one or more vertices
1342213427 \t_V_StringAfterPrefixCaseSensitive
1342313428 \t_V_StripLastDir
1342413429 \v??YFbxString@fbxsdk@@QEAAAEBV01@PEBD@Z
13425-\vP\fan
13430+\vP\an
13431+\vp<zn
1342613432 ^(.+)_[0-9A-Fa-f]{8}$
1342713433 _CustomCommand
1342813434 _CustomCommand%d
@@ -13503,7 +13509,6 @@ _volumeatlas_
1350313509 _wjb
1350413510 _zero
1350513511 `\tV_logd
13506-`tzn
1350713512 a:fulltype
1350813513 a:typeparam
1350913514 absolute
@@ -14128,7 +14133,6 @@ cycle_type
1412814133 cyclepose without cycle pose parameter on cmd sequence: %s\n
1412914134 cyclestart
1413014135 cylinder
14131-d(00
1413214136 damage_direction_cp
1413314137 damage_position_cp
1413414138 damage_table
@@ -14635,7 +14639,6 @@ group_name
1463514639 grow_or_shrink
1463614640 growth time
1463714641 guide_hair_count
14638-h+\n0Hi
1463914642 hair_count
1464014643 halfEdges %d,%d faces %d,%d angle %.1f deg.
1464114644 halfgridsnap
@@ -15744,10 +15747,11 @@ overwrite_existing
1574415747 overwrite_existing_flags_only
1574515748 ownerlog
1574615749 owns_polymorphic_data
15750+p<zn
1574715751 pCheckpointName
1574815752 pDescription
1574915753 pTagName
15750-p\fan
15754+p\an
1575115755 p\rP\f0
1575215756 paintsplat
1575315757 panorama_image
@@ -15938,7 +15942,6 @@ propattr_stretch_editor_into_label_column
1593815942 propdataname
1593915943 prune
1594015944 pseudo-
15941-ptzn
1594215945 pulse_node_custom_attributes
1594315946 pulse_runtime_lib
1594415947 pushout_strength
@@ -15949,6 +15952,8 @@ quad_bend_tolerance
1594915952 quadratic
1595015953 quaternion log
1595115954 quaternion_array
15955+r\fp<zn
15956+r\vpx
1595215957 rad2deg
1595315958 radius0_key
1595415959 radius1_key
M
game/bin/win64/physicsbuilder_strings.txt
+2-1
@@ -6920,7 +6920,7 @@ $prefix_element$
69206920 2DBlend
69216921 2DBlendEditor
69226922 2DBlendFromAnimation
6923-2\vpL
6923+2\vph
69246924 2_BONE_IK
69256925 4-byte data pool
69266926 4\r54t
@@ -10313,6 +10313,7 @@ Right pose, i.e. frame 2 from the 3 frame turn animation file with frame 1 subtr
1031310313 RightFingers
1031410314 Rigid
1031510315 Rigid Edge Hinges
10316+Rigid Weight to '%s'
1031610317 Rigid Weight to Bone
1031710318 Root Bone
1031810319 Root Bone Name
M
game/bin/win64/resourcecompiler_strings.txt
+9-4
@@ -21347,7 +21347,7 @@ $prefix_element$
2134721347 2\fWQx
2134821348 2\rE2h
2134921349 2\rlhp
21350-2\vpx
21350+2\vpt
2135121351 2^pV
2135221352 2_BONE_IK
2135321353 2a"l
@@ -21361,8 +21361,8 @@ $prefix_element$
2136121361 2prB
2136221362 3%3+3/353A3G3[3_3g3k3s3y3
2136321363 31tPR
21364-333?
2136521364 333?+
21365+333?P
2136621366 33s?+
2136721367 35-w
2136821368 37LQ
@@ -21707,6 +21707,8 @@ $prefix_element$
2170721707 @BH]f
2170821708 @CMapLocator
2170921709 @CMixControlAutomatic
21710+@HPX`hv`
21711+@HV0
2171021712 @Integer overflow in %s
2171121713 @MfKZ
2171221714 @Pgl
@@ -25940,6 +25942,7 @@ D@D/lcO+hcK
2594025942 DAE!
2594125943 DAL\fL@
2594225944 DANGER! Running partial map compile (-world,-vis,etc) in a full force-build. You should use -fshallow.\n
25945+DA`0
2594325946 DBDc
2594425947 DBF-
2594525948 DBITSLC
@@ -32879,7 +32882,7 @@ RT Proxy geometry: %s verts / %s, %s indices / %s. Duplicated %i verts due to p
3287932882 RT60 for low, mid, and high frequency bands for the probe.
3288032883 R\r1>Vp
3288132884 R\vp!y
32882-R\vpx
32885+R\vpt
3288332886 R]Di
3288432887 R_T5Y
3288532888 Rad2 Deg
@@ -33318,6 +33321,7 @@ Rigid Body Weight
3331833321 Rigid Constraint
3331933322 Rigid Edge Hinges
3332033323 Rigid Point Cloud must have at least 2 nodes. Non-trivial cluster would have 5+ nodes
33324+Rigid Weight to '%s'
3332133325 Rigid Weight to Bone
3332233326 RnSphere_t
3332333327 Rod node indices out of range, malformed node
@@ -36434,6 +36438,7 @@ Z~wl
3643436438 \f]ne3
3643536439 \fdhWTh
3643636440 \fiaR
36441+\fp\vPH
3643736442 \ful2
3643836443 \fy&3Gl
3643936444 \l:ArR
@@ -40666,7 +40671,6 @@ g|FeW\v
4066640671 g|MT
4066740672 h&eC
4066840673 h*Ax
40669-h+\n0J
4067040674 h0XB
4067140675 h2Wl
4067240676 h2n_\
@@ -46621,6 +46625,7 @@ u0Az
4662146625 u5bB
4662246626 u6Bm
4662346627 u:9F
46628+u;0E
4662446629 u;{Gk
4662546630 uBY+
4662646631 uC<[rR
M
game/bin/win64/toolframework2_strings.txt
+1-6
@@ -6875,7 +6875,6 @@ $name_$id
68756875 0\r%0t
68766876 0fF@
68776877 0fKVE8
6878-0pI[
68796878 0x%1
68806879 0x%p = %s '%s'
68816880 0|DL
@@ -6939,7 +6938,6 @@ $name_$id
69396938 2\nYH
69406939 2\r?hideEvent@QWidget@@MEAAXPEAVQHideEvent@@@Z
69416940 2\v?event@QAction@@MEAA_NPEAVQEvent@@@Z
6942-2\vppI[
69436941 2_BONE_IK
69446942 2aboutToShow()
69456943 2changed()
@@ -12530,7 +12528,6 @@ RMouse
1253012528 RMouseDoubleClick
1253112529 ROTATION
1253212530 R\f?font@QTreeWidgetItem@@QEBA?AVQFont@@H@Z
12533-R\fppI[
1253412531 R\n@Z*oG8
1253512532 R\r?hitTestComplexControl@QProxyStyle@@UEBA?AW4SubControl@QStyle@@W4ComplexControl@3@PEBVQStyleOptionComplex@@AEBVQPoint@@PEBVQWidget@@@Z
1253612533 R\t?canFetchMore@QAbstractItemModel@@UEBA_NAEBVQModelIndex@@@Z
@@ -12678,6 +12675,7 @@ Right To Left
1267812675 Right pose, i.e. frame 2 from the 3 frame turn animation file with frame 1 subtracted :: %s
1267912676 Rigid
1268012677 Rigid Edge Hinges
12678+Rigid Weight to '%s'
1268112679 Rigid Weight to Bone
1268212680 Root Bone
1268312681 Root Bone Name
@@ -13950,7 +13948,6 @@ Z}uU
1395013948 \vM8@0
1395113949 \vV?ffff
1395213950 \v\f?focusInEvent@QGroupBox@@MEAAXPEAVQFocusEvent@@@Z
13953-\vppI[
1395413951 \|e9d
1395513952 ]?staticMetaObject@QWindow@@2UQMetaObject@@B
1395613953 ]Kyw@
@@ -16081,7 +16078,6 @@ posture
1608116078 posture_nohands
1608216079 posxyz
1608316080 potato\n
16084-ppI[
1608516081 preMerge face 0
1608616082 preMerge face 1
1608716083 precision_degrees
@@ -16160,7 +16156,6 @@ r@3333S
1616016156 r@ffff
1616116157 rJ@LB
1616216158 rKK\t@i;
16163-r\vppI[
1616416159 rabbit
1616516160 rabid
1616616161 raccoon
M
game/bin/win64/tools/cs2_item_editor_strings.txt
+39-52
@@ -303,23 +303,26 @@ $\n\tword_list
303303 '\n\fglobal_stats
304304 '\v?enterEvent@QMenu@@MEAAXPEAVQEvent@@@Z
305305 ( %1, %2, %3, %4% )
306-(5KX
307-(9rX
308-(ARX
309-(AUX
310-(AZX
306+(18X
307+(1CX
308+(5VX
309+(5bX
310+(5mX
311+(9UX
312+(AWX
311313 (Documents Filter - Use | for OR, space for AND)
312314 (Filter)
313-(ITX
314-(MIX
315-(MxX
316-(MyX
315+(I9X
316+(IEX
317+(IfX
318+(MuX
319+(MvX
317320 (No Active Session)
318321 (Outliner Filter)
319-(Q4X
320-(QqX
321-(QtX
322-(UkX
322+(QMX
323+(ULX
324+(UqX
325+(YwX
323326 (\f"(\n&CMsgGCCStrike15_v2_ClientRequestOffers"\\n(CMsgGCCStrike15_v2_ClientRequestSouvenir
324327 (\f"6\n#CSOAccountKeychainRemoveToolCharges
325328 (\f"?\n#CMsgGCCStrike15_v2_Client2GCTextMsg
@@ -444,20 +447,15 @@ $\n\tword_list
444447 (\v2I.CWorkshop_PopulateItemDescriptions_Request.ItemDescriptionsLanguageBlock
445448 (\v2\f.CSOEconItem
446449 (\v?enterEvent@QToolButton@@MEAAXPEAVQEvent@@@Z
447-(aBX
448-(aEX
449-(aGX
450450 (default)
451-(iNX
452-(iYX
453-(m9X
454-(maX
455-(q0X
456-(qbX
457-(qzX
458-(uHX
459-(uXX
460-(uZX
451+(eXX
452+(iDX
453+(iOX
454+(ioX
455+(iqY
456+(mlX
457+(uKX
458+(yrX
461459 ) ?timerEvent@QTableView@@MEAAXPEAVQTimerEvent@@@Z
462460 )\f?focusOutEvent@QAbstractItemView@@MEAAXPEAVQFocusEvent@@@Z
463461 )\n!penalty_account_id_sessions_green
@@ -2631,6 +2629,7 @@ $\n\tword_list
26312629 /stickers
26322630 /weapons/customization/paints_gloves/
26332631 08@HR
2632+0La;
26342633 0\n+k_EGCItemCustomizationNotification_NameItem
26352634 0\n+k_EMsgGCCStrike15_v2_AccountPrivacySettings
26362635 0\n+k_EMsgGCCStrike15_v2_Account_RequestCoPlays
@@ -2643,7 +2642,6 @@ $\n\tword_list
26432642 0\n,GCConnectionStatus_NO_SESSION_IN_LOGON_QUEUE
26442643 0\n,k_ECommunityItemAttribute_CommunityItemAppID
26452644 0\n\tbroadcast
2646-0vlT;
26472645 0x%1
26482646 0x%p = %s '%s'
26492647 0x%s
@@ -2766,8 +2764,6 @@ $\n\tword_list
27662764 1setFilterWildcard(QString)
27672765 1tileSubWindows()
27682766 1trigger()
2769-201#
2770-20Z!
27712767 2DownArrowPressed()
27722768 2OnDownPressed()
27732769 2SIG_DragStarted()
@@ -2791,6 +2787,7 @@ $\n\tword_list
27912787 2\n\nline_items
27922788 2\r?hideEvent@QWidget@@MEAAXPEAVQHideEvent@@@Z
27932789 2\v?event@QAction@@MEAA_NPEAVQEvent@@@Z
2790+2\vpLa;
27942791 2aboutToShow()
27952792 2activated( int )
27962793 2changed()
@@ -2877,7 +2874,8 @@ $\n\tword_list
28772874 7\n2k_EGCItemCustomizationNotification_XpShopUseTicket
28782875 7\n2k_EMsgGCCStrike15_v2_GCToClientSteamdatagramTicket
28792876 7\n2k_EMsgGCCStrike15_v2_PlayerOverwatchCaseAssignment
2880-8-OW
2877+8)gX
2878+89[X
28812879 8\f?focusOutEvent@QTextBrowser@@MEAAXPEAVQFocusEvent@@@Z
28822880 8\n3k_EGCItemCustomizationNotification_ActivateFanToken
28832881 8\n3k_EGCItemCustomizationNotification_GenerateSouvenir
@@ -2886,6 +2884,7 @@ $\n\tword_list
28862884 8\n3k_EMsgGCCStrike15_v2_ServerVarValueNotificationInfo
28872885 8\v?event@QCompleter@@MEAA_NPEAVQEvent@@@Z
28882886 8]?size@QPixmap@@QEBA?AVQSize@@XZ
2887+8mOW
28892888 9>-memory-
28902889 9\f?focusOutEvent@QTextEdit@@MEAAXPEAVQFocusEvent@@@Z
28912890 9\n4k_EMsgGCCStrike15_v2_MatchEndRewardDropsNotification
@@ -4375,15 +4374,13 @@ $\n\tword_list
43754374 ?userType@QVariant@@QEBAHXZ
43764375 ?valueToKeys@QMetaEnum@@QEBA?AVQByteArray@@H@Z
43774376 @#?write@QTableWidgetItem@@UEBAXAEAVQDataStream@@@Z
4378-@08NlT;
4379-@HPX`hv@
4377+@HPX`hvp
43804378 @\n\fSingleObject
43814379 @\n\vserver_type
43824380 @\v?event@QFrame@@MEAA_NPEAVQEvent@@@Z
4383-@nlT;
4381+@ht0
43844382 A new location must be selected in order to save the file.
43854383 A#?write@QTreeWidgetItem@@UEBAXAEAVQDataStream@@@Z
4386-AA:0Z!
43874384 ARRAY_MEMBERS_VIA_PARENT
43884385 ARRAY_PARENT_ONLY
43894386 A\n<k_EGCItemCustomizationNotification_ClientRedeemMissionReward
@@ -4466,7 +4463,6 @@ Attribute definition %s: bad setting for 'stored_as_integer' = '%s'
44664463 Attribute definition index %d must be greater than or equal to zero
44674464 Attribute.%s.%s
44684465 AuditData
4469-BPX!
44704466 BUTTON
44714467 B\f?focusWidget@QApplication@@SAPEAVQWidget@@XZ
44724468 B`?translate@QPainter@@QEAAXAEBVQPointF@@@Z
@@ -5687,12 +5683,12 @@ OrigMat
56875683 Other Tools
56885684 Outliner
56895685 OverlayProjectionDirection
5690-P08J
5691-P08NlT;
5686+P08J0
56925687 P?isValid@QColor@@QEBA_NXZ
56935688 P?isValid@QTextCharFormat@@QEBA_NXZ
56945689 P?itemData@QStandardItemModel@@UEBA?AV?$QMap@HVQVariant@@@@AEBVQModelIndex@@@Z
56955690 P?jumpToNextImage@QImageReader@@QEAA_NXZ
5691+PLa;
56965692 PROXY
56975693 P\f?font@QTableWidgetItem@@QEBA?AVQFont@@XZ
56985694 P\n\nattributes
@@ -5847,6 +5843,7 @@ RW?restore@QPainter@@QEAAXXZ
58475843 R\f?font@QTreeWidgetItem@@QEBA?AVQFont@@H@Z
58485844 R\t?canFetchMore@QAbstractItemModel@@UEBA_NAEBVQModelIndex@@@Z
58495845 R\v?event@QMenuBar@@MEAA_NPEAVQEvent@@@Z
5846+R\vpLa;
58505847 R^?supportedDropActions@QStandardItemModel@@UEBA?AV?$QFlags@W4DropAction@Qt@@@@XZ
58515848 Random attributes '%s': Attribute definition "%s" was not found
58525849 RangedFloat
@@ -6333,7 +6330,6 @@ YYYY-MM-DD hh:mm:ss
63336330 Y\v?event@QRadioButton@@MEAA_NPEAVQEvent@@@Z
63346331 Yes: Checkout, resolve conflicts later.
63356332 Z0000
6336-Z0Z!
63376333 Z?setItalic@QFont@@QEAAX_N@Z
63386334 Z?setItemData@QStandardItemModel@@UEAA_NAEBVQModelIndex@@AEBV?$QMap@HVQVariant@@@@@Z
63396335 Z?setNamedColor@QColor@@QEAAXAEBVQString@@@Z
@@ -6347,7 +6343,6 @@ Z?setPixelColor@QImage@@QEAAXHHAEBVQColor@@@Z
63476343 Z?setPixelSize@QFont@@QEAAXH@Z
63486344 Z?setPlainText@QTextDocument@@QEAAXAEBVQString@@@Z
63496345 Z?setPointSize@QFont@@QEAAXH@Z
6350-ZPX!
63516346 ZX?setBackground@QTextFormat@@QEAAXAEBVQBrush@@@Z
63526347 Z]?sort@QStandardItemModel@@UEAAXHW4SortOrder@Qt@@@Z
63536348 Zip system failure.\n
@@ -6413,6 +6408,7 @@ Zip system failure.\n
64136408 \f\f?focusInEvent@QLabel@@MEAAXPEAVQFocusEvent@@@Z
64146409 \f\n EGCItemCustomizationNotification
64156410 \f\n?deselect@QLineEdit@@QEAAXXZ
6411+\fpLa;
64166412 \n CMsgItemAcknowledged__DEPRECATED
64176413 \n!CMsgGCCStrike15_v2_Party_Register
64186414 \n!CMsgGCCStrike15_v2_PlayersProfile
@@ -6509,7 +6505,6 @@ Zip system failure.\n
65096505 \n?editorDestroyed@QAbstractItemView@@MEAAXPEAVQObject@@@Z
65106506 \n?editorEvent@QStyledItemDelegate@@MEAA_NPEAVQEvent@@PEAVQAbstractItemModel@@AEBVQStyleOptionViewItem@@AEBVQModelIndex@@@Z
65116507 \nCannot write log file '%1'.\n
6512-\nIOW
65136508 \nInvalid CONTENT Path '%1'.\n\n%2\n
65146509 \nInvalid item name '%1'.\n\n%2\n
65156510 \nNo modified item assets. Nothing to save.\n
@@ -6906,6 +6901,7 @@ Zip system failure.\n
69066901 \v?fixup@QSpinBox@@MEBAXAEAVQString@@@Z
69076902 \v?focusChanged@QApplication@@QEAAXPEAVQWidget@@0@Z
69086903 \v\f?focusInEvent@QGroupBox@@MEAAXPEAVQFocusEvent@@@Z
6904+\vpLa;
69096905 ]?staticMetaObject@QTextDocument@@2UQMetaObject@@B
69106906 ]?staticMetaObject@QWindow@@2UQMetaObject@@B
69116907 ]\r?horizontalOffset@QListView@@MEBAHXZ
@@ -6939,17 +6935,14 @@ _nodrips
69396935 _sm.png
69406936 _sticker_capsule
69416937 _toolsautosave
6942-`20Z!
69436938 `?validate@QDoubleValidator@@UEBA?AW4State@QValidator@@AEAVQString@@AEAH@Z
69446939 `?validate@QRegExpValidator@@UEBA?AW4State@QValidator@@AEAVQString@@AEAH@Z
6940+`IrY
69456941 `\v?event@QSpinBox@@MEAA_NPEAVQEvent@@@Z
6946-`aqY
6947-`flT;
6948-`nlT;
6942+`ht0
69496943 a?windowText@QPalette@@QEBAAEBVQBrush@@XZ
69506944 a?write@QStandardItem@@UEBAXAEAVQDataStream@@@Z
69516945 a?x@QMouseEvent@@QEBAHXZ
6952-aBvlT;
69536946 abandon
69546947 abandoned_match
69556948 absolute
@@ -7408,7 +7401,6 @@ fixed_size
74087401 fixed_width
74097402 flMaximum
74107403 flMinimum
7411-flT;
74127404 flValue
74137405 flVaue
74147406 flagchoices
@@ -8004,7 +7996,6 @@ newValue
80047996 new_slot
80057997 next_rarity
80067998 nextmatch_title
8007-nlT;
80087999 no_help_info
80098000 node_dest
80108001 node_id
@@ -8056,13 +8047,12 @@ overrideclass
80568047 owcaseid
80578048 owner_only
80588049 owns_polymorphic_data
8059-p08@H^lT;
8060-p>lT;
80618050 pButton
80628051 pCurrentFocusWidget
80638052 pData
80648053 pEvent
80658054 pFilter
8055+pLa;
80668056 pPrevFocusWidget
80678057 pResultKV
80688058 pV?read@QImageReader@@QEAA?AVQImage@@XZ
@@ -8151,7 +8141,6 @@ player_xp_bonus_flags
81518141 players_humans
81528142 players_online
81538143 players_searching
8154-pnlT;
81558144 point
81568145 point_follow
81578146 point_follow_substepped
@@ -8731,7 +8720,6 @@ viewers_external_total
87318720 visgroupfilter
87328721 visible_when_true
87338722 visuals
8734-vlT;
87358723 vmap
87368724 vmesh
87378725 vmt_overrides
@@ -8806,7 +8794,6 @@ y\v?eventFilter@QCompleter@@MEAA_NPEAVQObject@@PEAVQEvent@@@Z
88068794 yellow
88078795 youtube_account_name
88088796 yyyy-MM-dd
8809-zPX!
88108797 z\n?dragLeaveEvent@QTextEdit@@MEAAXPEAVQDragLeaveEvent@@@Z
88118798 z\v?customEvent@QObject@@MEAAXPEAVQEvent@@@Z
88128799 z\v?eventFilter@QDialog@@MEAA_NPEAVQObject@@PEAVQEvent@@@Z
M
game/bin/win64/tools/hammer_strings.txt
+20-21
@@ -158,7 +158,6 @@
158158 -vrad3LargeBlockSize
159159 -world
160160 .PrS
161- .prS
162161 255
163162 8f\ff
164163 <-- Arg '%s'
@@ -320,8 +319,6 @@
320319 "%s" attribute should not be used when using AnimGraph, reset value to default if possible.
321320 "%s": Bad mode
322321 "%s": Information lost writing value (%g) as (unsigned) RATIONAL
323-"003
324-"0d3
325322 "2MR
326323 "; boundary="----%s"%s%s
327324 "?update@QGraphicsItem@@QEAAXAEBVQRectF@@@Z
@@ -411,7 +408,6 @@
411408 # ?timerEvent@QMdiArea@@MEAAXPEAVQTimerEvent@@@Z
412409 # OBJ file exported from Hammer\n\n
413410 # of channels is zero.\n
414-#0d3
415411 #?ModifyFlag@FbxProperty@fbxsdk@@QEAAXW4EFlags@FbxPropertyFlags@2@_N@Z
416412 #?MultNormalize@FbxMatrix@fbxsdk@@QEBA?AVFbxVector4@2@AEBV32@@Z
417413 #?Normalize@FbxVector4@fbxsdk@@QEAAXXZ
@@ -1182,7 +1178,7 @@ $worldspacetype
11821178 ../src/devtools/bin/certificates/game/
11831179 ..uR5&m
11841180 .0vS
1185-.0yS
1181+.0wS
11861182 .4bb
11871183 .97yY
11881184 .?AUBufferedImpulseResponse_t@@
@@ -14786,7 +14782,8 @@ $worldspacetype
1478614782 .P6AXPEAVQToolButton@@AEBUInitContext_t@CBaseDynamicWidgetFactory@@@Z
1478714783 .P6AXPEBDPEAVCBufferString@@@Z
1478814784 .PsS
14789-.PyS
14785+.PvS
14786+.PwS
1479014787 .Q.Ol
1479114788 .R?matches@QKeyEvent@@QEBA_NW4StandardKey@QKeySequence@@@Z
1479214789 .[?setRed@QColor@@QEAAXH@Z
@@ -15064,7 +15061,7 @@ $worldspacetype
1506415061 .png
1506515062 .pp@0
1506615063 .psd
15067-.pyS
15064+.pwS
1506815065 .text$
1506915066 .tga
1507015067 .tif
@@ -15935,6 +15932,7 @@ $worldspacetype
1593515932 2\rlhp
1593615933 2\v?event@QAction@@MEAA_NPEAVQEvent@@@Z
1593715934 2\vp!J
15935+2\vpx
1593815936 2^pV
1593915937 2_BONE_IK
1594015938 2a"l
@@ -16135,14 +16133,13 @@ $worldspacetype
1613516133 6FaceSkyBox
1613616134 6H,N
1613716135 6O|T%
16138-6PpS
1613916136 6Qd=
1614016137 6[?setRenderHint@QPainter@@QEAAXW4RenderHint@1@_N@Z
1614116138 6\tV_fread
1614216139 6\v?createNode@QMapDataBase@@QEAAPEAUQMapNodeBase@@HHPEAU2@_N@Z
1614316140 6\v?event@QComboBox@@UEAA_NPEAVQEvent@@@Z
1614416141 6_wEX
16145-6`sS
16142+6`qS
1614616143 6afD
1614716144 6bX+
1614816145 6c&0|vvX
@@ -16354,6 +16351,7 @@ $worldspacetype
1635416351 > (After)
1635516352 >"?IsValid@FbxProperty@fbxsdk@@QEBA_NXZ
1635616353 >#>)>/>3>A>W>c>e>w>
16354+>0qS
1635716355 >333>
1635816356 >4|6eXg_e
1635916357 >7^0g
@@ -18789,11 +18787,10 @@ $worldspacetype
1878918787 @%s_lookFrame_0
1879018788 @%s_lookFrame_1
1879118789 @%s_lookFrame_2
18790+@08Nl
1879218791 @0pp
18793-@6 vS
18794-@6 yS
18795-@6PtS
18796-@6PvS
18792+@6pvS
18793+@6pyS
1879718794 @:p1B
1879818795 @BH]f
1879918796 @C:\buildworker\csgo_rel_win64\build\src\public\tier0\utlsortvector.h
@@ -25158,7 +25155,6 @@ ExtrudeVertex
2515825155 ExtrudeVertices
2515925156 Extrudes the profile shape along the path from the current location of the profile shape.
2516025157 Extrudes the profile shape using the local space of the object, such that the origin of the object will be placed on the path.
25161-F xS
2516225158 F#bgn?MwN|%
2516325159 F'pY
2516425160 F+Zb
@@ -25642,6 +25638,7 @@ Four-View Quad
2564225638 Fourth Control Point Location
2564325639 Fourth Control Point Number
2564425640 Fourth Control Point Parent
25641+FpxS
2564525642 Frac
2564625643 Fractal
2564725644 Fractional component (ie. returns 0.34 for 12.34)
@@ -29352,6 +29349,7 @@ P-224
2935229349 P-256
2935329350 P-384
2935429351 P-521
29352+P08Nl
2935529353 P1\t98"
2935629354 P4CopyFile
2935729355 P4CopyFile: Couldn't copy "%s" to "%s"\n
@@ -30561,11 +30559,11 @@ RSA_verify_PKCS1_PSS_mgf1
3056130559 RSDSQ
3056230560 RT60 for low, mid, and high frequency bands for the probe.
3056330561 R\f?font@QTreeWidgetItem@@QEBA?AVQFont@@H@Z
30562+R\fpx
3056430563 R\n?background@QPainter@@QEBAAEBVQBrush@@XZ
3056530564 R\r1>Vp
3056630565 R\t?canFetchMore@QAbstractItemModel@@UEBA_NAEBVQModelIndex@@@Z
3056730566 R\v?event@QMenuBar@@MEAA_NPEAVQEvent@@@Z
30568-R\vpD
3056930567 R]Di
3057030568 R^?supportedDropActions@QStandardItemModel@@UEBA?AV?$QFlags@W4DropAction@Qt@@@@XZ
3057130569 R_T5Y
@@ -31180,6 +31178,7 @@ RightFingers
3118031178 Rigid
3118131179 Rigid Constraint
3118231180 Rigid Edge Hinges
31181+Rigid Weight to '%s'
3118331182 Rigid Weight to Bone
3118431183 Root Bone
3118531184 Root Bone Name
@@ -34353,7 +34352,6 @@ VPK Size
3435334352 VPK directory for '%s' corrupt
3435434353 VPK: Check file %s Length %d MD5 %s \n
3435534354 VPK: Wrote file %s Length %d MD5 %s \n
34356-VPrS
3435734355 VPulse File (*.vpulse)
3435834356 VRAD3_PATH
3435934357 VRenderingSiblingWidget
@@ -35337,6 +35335,7 @@ Z~wl
3533735335 \f]ne3
3533835336 \fdhWTh
3533935337 \fiaR
35338+\fp\vPT
3534035339 \ful2
3534135340 \fy&3Gl
3534235341 \game
@@ -35425,7 +35424,6 @@ Z~wl
3542535424 \nEnd build:
3542635425 \nFailed to read %s - %s\n
3542735426 \nIf the map is built without these entities it will not function correctly in game.\nContinue with build anyway?
35428-\nLCG
3542935427 \nNo game entities will be available for creation.\n
3543035428 \nRead only files which will NOT be saved:\n
3543135429 \nS?moveTo@QPainterPath@@QEAAXAEBVQPointF@@@Z
@@ -35815,6 +35813,7 @@ _zero
3581535813 _zero_percent_distance
3581635814 _}eOk
3581735815 `28)fk
35816+`6 xS
3581835817 `:zQF
3581935818 `?validate@QDoubleValidator@@UEBA?AW4State@QValidator@@AEAVQString@@AEAH@Z
3582035819 `?validate@QIntValidator@@UEBA?AW4State@QValidator@@AEAVQString@@AEAH@Z
@@ -35852,6 +35851,7 @@ a?worldTransform@QPainter@@QEBAAEBVQTransform@@XZ
3585235851 a?write@QStandardItem@@UEBAXAEAVQDataStream@@@Z
3585335852 a@XZ
3585435853 aA0k
35854+aBvl
3585535855 aD/x
3585635856 aDSS
3585735857 aECDH
@@ -37381,7 +37381,6 @@ cylinder
3738137381 cz>Sp
3738237382 d e not congruent to 1
3738337383 d"?validate@QDoubleSpinBox@@UEBA?AW4State@QValidator@@AEAVQString@@AEAH@Z
37384-d(003
3738537384 d.allOrFirstTier
3738637385 d.authenticatedData
3738737386 d.certificate
@@ -42098,6 +42097,7 @@ p.other
4209842097 p.ppBasis
4209942098 p.prime
4210042099 p.tpBasis
42100+p08@H^l
4210142101 p2{l
4210242102 p4 fstat -Op %s
4210342103 p4Z3
@@ -42119,8 +42119,8 @@ pDescription
4211942119 pElement
4212042120 pEntity
4212142121 pEvent
42122-pF xS
4212342122 pFilter
42123+pFpxS
4212442124 pG_*h
4212542125 pIp
4212642126 pLightRigButton
@@ -42721,9 +42721,9 @@ rRfKR
4272142721 rX&O0
4272242722 rZ1VwGf5
4272342723 rZPM
42724-r\fpD
4272542724 r\n?dragLeaveEvent@QGraphicsItem@@MEAAXPEAVQGraphicsSceneDragDropEvent@@@Z
4272642725 r\vDi
42726+r\vpx
4272742727 r_dota_wind_min_high_freq_strength
4272842728 rad2deg
4272942729 radius0_key
@@ -45654,7 +45654,6 @@ zz2K
4565445654 ~CModelInstance destructor: leaking softbody because physics world disappeared\n
4565545655 ~If D
4565645656 ~P2T
45657-~PrS
4565845657 ~R65Fu
4565945658 ~\f?geometry@QGraphicsLayoutItem@@QEBA?AVQRectF@@XZ
4566045659 ~\n?dragMoveEvent@QAbstractScrollArea@@MEAAXPEAVQDragMoveEvent@@@Z
M
game/bin/win64/tools/modeldoc_editor_strings.txt
+36-34
@@ -80,6 +80,7 @@
8080 ?timerEvent@QAbstractSlider@@MEAAXPEAVQTimerEvent@@@Z
8181 ?timerEvent@QAbstractSpinBox@@MEAAXPEAVQTimerEvent@@@Z
8282 ?write@QMetaProperty@@QEBA_NPEAVQObject@@AEBVQVariant@@@Z
83+ AhMJ
8384 CCD
8485 Click to inherit.
8586 Click to override.
@@ -563,31 +564,34 @@ $prefix_element$
563564 (%.2f, %.2f, %.2f)
564565 (%1 clips)
565566 (%d tracks)
566-(58R
567-(5UR
568-(92R
567+(1lR
569568 (? Queued)
570569 (?!\d)[\w_]*
571570 (A0R
572-(A1R
573-(A9R
571+(A5R
572+(AER
573+(ANR
574+(AVR
574575 (Advanced Feature) Used to specify special interaction rules or exclusions. References a name in scripts/collision_properties.txt.
575-(AkR
576+(AfR
577+(AmR
576578 (Anonymous)
579+(AqR
580+(AwR
577581 (Cannot dynamically spawn a prop_static)
578582 (Custom Colors Disabled)
579583 (Debug Feature) Used to draw collision with the same material in Physics Debugger as in Hammer.
580-(EdR
581584 (Edges to Faces)
582585 (Edges to Vertices)
583-(EpR
584586 (Error)
587+(EsR
585588 (Faces to Edges)
586589 (Faces to Vertices)
587590 (Filter)
588-(I5R
589-(IwR
591+(I9R
592+(IpR
590593 (Mesh Substring Filter)
594+(MrR
591595 (Multiple)
592596 (No Active Session)
593597 (No Archetype Selected)
@@ -596,29 +600,28 @@ $prefix_element$
596600 (No class selected)
597601 (Outliner Filter)
598602 (Preview Outliner Filter)
603+(Q8R
604+(QaR
605+(QcR
599606 (Specified in project's gameinfo.gi)
600607 (Steam Audio) Update physics surface property of VMDL files. They are used for picking acoustic material property for Steam Audio.
601-(U3R
602-(UZR
603-(UfR
604608 (Vertices to Edges)
605609 (Vertices to Faces)
606-(YoR
607610 (\f?focusOutEvent@QAbstractButton@@MEAAXPEAVQFocusEvent@@@Z
608611 (\r?hideEvent@QAbstractSpinBox@@MEAAXPEAVQHideEvent@@@Z
609612 (\v?enterEvent@QToolButton@@MEAAXPEAVQEvent@@@Z
610-(aqR
611-(evR
613+(a3R
614+(ajR
615+(egR
612616 (export) %d %s %d %s %s\n
613617 (export) %d %s %d %s\n
614-(iYR
615-(iiR
616-(imR
617618 (layer %d)
619+(mMR
620+(mhR
618621 (no-compile)
619-(qsR
620-(uMR
621-(ykR
622+(u8R
623+(uUR
624+(y2R
622625 ) ?timerEvent@QTableView@@MEAAXPEAVQTimerEvent@@@Z
623626 )\f?focusOutEvent@QAbstractItemView@@MEAAXPEAVQFocusEvent@@@Z
624627 )\n?displayText@QStyledItemDelegate@@UEBA?AVQString@@AEBVQVariant@@AEBVQLocale@@@Z
@@ -12779,7 +12782,6 @@ $prefix_element$
1277912782 2\n?doItemsLayout@QListView@@UEAAXXZ
1278012783 2\r?hideEvent@QWidget@@MEAAXPEAVQHideEvent@@@Z
1278112784 2\v?event@QAction@@MEAA_NPEAVQEvent@@@Z
12782-2\vp4
1278312785 2_BONE_IK
1278412786 2aboutToShow()
1278512787 2accepted()
@@ -12890,12 +12892,12 @@ $prefix_element$
1289012892 8"3hrf
1289112893 8&Kx
1289212894 8-byte data pool
12893-8=BP
12894-8YgR
12895+89AP
1289512896 8\f?focusOutEvent@QTextBrowser@@MEAAXPEAVQFocusEvent@@@Z
1289612897 8\v?event@QCompleter@@MEAA_NPEAVQEvent@@@Z
1289712898 8]?size@QPixmap@@QEBA?AVQSize@@XZ
1289812899 8m_nParticle
12900+8}BP
1289912901 969p
1290012902 9\f?focusOutEvent@QTextEdit@@MEAAXPEAVQFocusEvent@@@Z
1290112903 9\tV_frexpf
@@ -14031,6 +14033,7 @@ $prefix_element$
1403114033 ?open@QFile@@UEAA_NV?$QFlags@W4OpenModeFlag@QIODevice@@@@@Z
1403214034 ?orientation@QSplitter@@QEBA?AW4Orientation@Qt@@XZ
1403314035 ?orientation@QSplitterHandle@@QEBA?AW4Orientation@Qt@@XZ
14036+?pL6
1403414037 ?paint@QStyledItemDelegate@@UEBAXPEAVQPainter@@AEBVQStyleOptionViewItem@@AEBVQModelIndex@@@Z
1403514038 ?paintEngine@QWidget@@UEBAPEAVQPaintEngine@@XZ
1403614039 ?paintEvent@QAbstractScrollArea@@MEAAXPEAVQPaintEvent@@@Z
@@ -14869,15 +14872,13 @@ $prefix_element$
1486914872 @%s_lookFrame_1
1487014873 @%s_lookFrame_2
1487114874 @AuthPhysCollisionAttributesModeEnum_t
14872-@HPX`hv
14873-@HV0
14875+@HPX`hvp
1487414876 @Integer overflow in %s
1487514877 @ModelDocViewMode_t::ORTHO_BOTTOM
1487614878 @\v?event@QFrame@@MEAA_NPEAVQEvent@@@Z
1487714879 @bonemerge
1487814880 @cl_aggregate_particles
1487914881 @fff>fff>fff>fff>
14880-@pLK
1488114882 @spawn
1488214883 @unnamed_%d
1488314884 A bone named %s already exists.
@@ -17079,7 +17080,6 @@ Center Of Mass
1707917080 Center Vertices
1708017081 Center pose, i.e. frame 1 from the 3 frame turn animation file with frame 1 subtracted :: %s
1708117082 Center vertices relative to the origin using average vertex position. Optionally rotate.
17082-ChXJ
1708317083 Chain Length
1708417084 Chain Length: %d
1708517085 Chain Lookat
@@ -22152,10 +22152,8 @@ RT Proxies: %d\n
2215222152 RT Proxy Triangles: %d\n
2215322153 RT Proxy Vertices: %d\n
2215422154 R\f?font@QTreeWidgetItem@@QEBA?AVQFont@@H@Z
22155-R\fp4
2215622155 R\t?canFetchMore@QAbstractItemModel@@UEBA_NAEBVQModelIndex@@@Z
2215722156 R\v?event@QMenuBar@@MEAA_NPEAVQEvent@@@Z
22158-R\vpT
2215922157 R^?supportedDropActions@QStandardItemModel@@UEBA?AV?$QFlags@W4DropAction@Qt@@@@XZ
2216022158 R_T5Y
2216122159 Rad2 Deg
@@ -22462,6 +22460,7 @@ Right To Left
2246222460 Right pose, i.e. frame 2 from the 3 frame turn animation file with frame 1 subtracted :: %s
2246322461 Rigid
2246422462 Rigid Edge Hinges
22463+Rigid Weight to '%s'
2246522464 Rigid Weight to Bone
2246622465 Rod node indices out of range, malformed node
2246722466 Rods
@@ -24462,6 +24461,7 @@ ZoomOut
2446224461 \f\n?deselect@QLineEdit@@QEAAXXZ
2446324462 \f\r?heightForWidth@QFormLayout@@UEBAHH@Z
2446424463 \f\tV_acosd
24464+\fp\vPHc
2446524465 \n Size: L: <%i, %i> A: <%i, %i> Scale: %0.2f\n Geometry: %s\n Virtual Geometry: %s\n Available Geometry: %s\n Orientation: %s\n
2446624466 \n?appendRow@QStandardItemModel@@QEAAXPEAVQStandardItem@@@Z
2446724467 \n?bits@QImage@@QEAAPEAEXZ
@@ -24516,7 +24516,6 @@ ZoomOut
2451624516 \ng default\n
2451724517 \ng_flConfigMaxCoord
2451824518 \ng_flToolsDefaultFarZ
24519-\notS
2452024519 \prefabs
2452124520 \r?darker@QColor@@QEBA?AV1@H@Z
2452224521 \r?data@QStandardItem@@UEBA?AVQVariant@@H@Z
@@ -24571,6 +24570,7 @@ ZoomOut
2457124570 \r[WRN] %d crossing edges detected - unfixed\n
2457224571 \r\f?focusInEvent@QLineEdit@@MEAAXPEAVQFocusEvent@@@Z
2457324572 \r\r?heightForWidth@QGridLayout@@UEBAHH@Z
24573+\rtext
2457424574 \s*([+-*/])\s*=\s*([\-0-9.e]*)
2457524575 \t"?update@QWidget@@QEAAXAEBVQRect@@@Z
2457624576 \t?addPixmap@QIcon@@QEAAXAEBVQPixmap@@W4Mode@1@W4State@1@@Z
@@ -24645,6 +24645,7 @@ ZoomOut
2464524645 \v?flags@QTreeWidgetItem@@QEBA?AV?$QFlags@W4ItemFlag@Qt@@@@XZ
2464624646 \v?focusChanged@QApplication@@QEAAXPEAVQWidget@@0@Z
2464724647 \v\f?focusInEvent@QGroupBox@@MEAAXPEAVQFocusEvent@@@Z
24648+\vpHc
2464824649 ]?sharedPainter@QPaintDevice@@MEBAPEAVQPainter@@XZ
2464924650 ]?start@QMovie@@QEAAXXZ
2465024651 ]?staticMetaObject@QTextDocument@@2UQMetaObject@@B
@@ -24765,12 +24766,12 @@ _zero
2476524766 `?validate@QRegularExpressionValidator@@UEBA?AW4State@QValidator@@AEAVQString@@AEAH@Z
2476624767 `?value@QColor@@QEBAHXZ
2476724768 `?valueF@QColor@@QEBANXZ
24769+`Q1R
2476824770 `Q?lightnessF@QColor@@QEBANXZ
2476924771 `V?queryKeyboardModifiers@QGuiApplication@@SA?AV?$QFlags@W4KeyboardModifier@Qt@@@@XZ
2477024772 `\r?entryInfoList@QDir@@QEBA?AV?$QList@VQFileInfo@@@@V?$QFlags@W4Filter@QDir@@@@V?$QFlags@W4SortFlag@QDir@@@@@Z
2477124773 `\tV_logd
2477224774 `\v?event@QSpinBox@@MEAA_NPEAVQEvent@@@Z
24773-`e8R
2477424775 a:fulltype
2477524776 a:typeparam
2477624777 a?windowText@QPalette@@QEBAAEBVQBrush@@XZ
@@ -26079,10 +26080,12 @@ group_title
2607926080 grow_or_shrink
2608026081 guide_hair_count
2608126082 hAttachmentCamera
26083+hQ8R
2608226084 hResource
2608326085 hSShould we try to straighten two faces connected to this edge? (tangent)
2608426086 h\r?horizontalScrollbarAction@QTreeView@@MEAAXH@Z
2608526087 h\v?event@QTabWidget@@MEAA_NPEAVQEvent@@@Z
26088+ha>R
2608626089 ha?window@QPalette@@QEBAAEBVQBrush@@XZ
2608726090 hair_count
2608826091 halfEdges %d,%d faces %d,%d angle %.1f deg.
@@ -27271,7 +27274,6 @@ quadratic
2727127274 quaternion_array
2727227275 quiet
2727327276 r>C:\buildworker\csgo_rel_win64\build\src\animlib\animpose.cpp
27274-r\vp4
2727527277 rad2deg
2727627278 radiant
2727727279 radiant_creeps
Update information
Build
24537688
Associated changelist
37744763
Game version
2000880

Found something incorrect?

Report a missing patch note, incorrect file change, or other problem.