Other user's assetsAll the assets in this file belong to the author, or are from free-to-use modder's resources
Upload permissionYou can upload this file to other sites but you must credit me as the creator of the file
Modification permissionYou are allowed to modify my files and release bug fixes or improve on the features so long as you credit me as the original creator
Conversion permissionYou can convert this file to work with other games as long as you credit me as the creator of the file
Asset use permissionYou are allowed to use the assets in this file without permission as long as you credit me
Asset use permission in mods/files that are being soldYou are not allowed to use assets from this file in any mods/files that are being sold, for money, on Steam Workshop or other platforms
Asset use permission in mods/files that earn donation pointsYou are allowed to earn Donation Points for your mods if they use my assets
Author notes
This author has not provided any additional notes regarding file permissions
File credits
This author has not credited anyone else in this file
Donation Points system
Please log in to find out whether this mod is receiving Donation Points
Changelogs
Version 4.1
Disabled additional scaling when crouching - no longer needed and seems to have caused some issues.
Version 4.0
The scaling logic was redone - now it only affects the character’s mesh. The mod finally works as it was meant to.
Version 3.1
Fixed player collision box reset when crouching.
Version 3.0
- No more getting stuck - works at any scale.
- Mounting a horse won’t reset your scale anymore.
- Better performance and improved stability.
Version 2.1.1 Extended
Added separate X/Y/Z scaling.
Version 2.1
Changed hotkeys:
END - returns the scale to the specified values (if it was reset, for example, when mounting a horse);
DEL - returns the scale to 1.0 (will help you get through places where you are stuck due to your height).
Version 2.0
To change scale:
1. Open main.lua (OblivionRemastered\Binaries\Win64\ue4ss\Mods\PlayerScale\scripts\main.lua) with notepad;
2. Change the values 0.95 at string local DESIRED_SCALE = 0.95
to what you need, for example 1.2, so you will get: local DESIRED_SCALE = 1.2;
3. Save and close the file.
Added hotkeys for use:
INS - returns the scale to the specified values (if it was reset, for example, when mounting a horse)
DEL - returns the scale to 1.0 (will help you get through places where you are stuck due to your height)
Version 1.0
To change scale:
1. Open main.lua (OblivionRemastered\Binaries\Win64\ue4ss\Mods\PlayerScale\scripts\main.lua) with notepad;
2. Change the values 0.95 at string player:SetActorScale3D({X = 0.95, Y = 0.95, Z = 0.95})
to what you need, for example 1.2, so you will get: player:SetActorScale3D({X = 1.2, Y = 1.2, Z = 1.2});
3. Save and close the file.
Hello everyone!
This simple mod is created with support of ChatGPT.
---
So, what is this all about? As you probably know, no matter what race you choose, the player character’s scale is always set to 1.0. If you try to change it using other mods or console commands, the UI in the pause menu and inventory becomes stretched or squashed - often with black bars.When mounting a horse, your scale is also reset to default. And if your character is too tall, you’ll likely get stuck in low places...
This mod completely fixes all of that! You can use any scale you want for your character. When you open a menu, the scale temporarily resets to 1.0 to prevent UI stretching. Your scale will never reset — not even when riding a horse. And yes, you’ll never get stuck, even at 2.0x height! ---