Moving items around, skip the wobble effect

File: C:\Program Files (x86)\Steam\steamapps\common\Boundless\assets\gui\layouts\common\layouts.json
Changing the section “wobblerSettingsTpl” as shown below, will stop the wobble effect when forging and moving items around in inventory.

    "wobblerSettingsTpl": [
        {
            "name": "wobbleAnimationPickUp",
            "scope": {
                "frequencyXY": 0, **<---- Set to 0, default is 3**
                "frequencyZ": 0, **<---- Set to 0, default is 2**
                "amplitudeX": 10,
                "amplitudeY": 20,
                "amplitudeZ": 0.02,
                "halflife": 0.3
            }
        },
        {
            "name": "wobbleAnimationPutDown",
            "scope": {
                "frequencyXY": 0, **<---- Set to 0, default is 12**
                "frequencyZ": 0, **<---- Set to 0, default is 8**
                "amplitudeX": 30,
                "amplitudeY": 60,
                "amplitudeZ": 0.05,
                "halflife": 0.15
            }
        }
    ],

Before:


After:
10 Likes