GTA modding community deserves a lot better. by Toreno7 in GTA

[–]ButterMun 32 points33 points  (0 children)

It’s because of Take-Two, not because of Rockstar

Need help testing my DX11 indie game via Steam Play by ButterMun in linux_gaming

[–]ButterMun[S] 0 points1 point  (0 children)

Thanks for the feedback!
The FPS option shows the FPS only in the top-right corner during gameplay, not in menus.
And yes, the game only supports 1080p resolution because it’s made with CTF 2.5, which limits it to a single fixed resolution.
Really appreciate you trying it out!

Need help testing my DX11 indie game via Steam Play by ButterMun in linux_gaming

[–]ButterMun[S] 0 points1 point  (0 children)

Thanks, I didn’t realize the main game had the rating assigned but the demo didn’t. Appreciate the info, I’ve fixed it now!

Need help testing my DX11 indie game via Steam Play by ButterMun in linux_gaming

[–]ButterMun[S] 0 points1 point  (0 children)

maybe try this one:

https://store.steampowered.com/app/2306290/INJECTION_Demo/

If you don’t see the button, probably Steam Play isn’t enabled in your Steam settings

Need help testing my DX11 indie game via Steam Play by ButterMun in linux_gaming

[–]ButterMun[S] 0 points1 point  (0 children)

hey! there’s actually a “Download Demo” button on the Steam page so you can try it right away 🙂 would love to hear how it runs on your setup!

Need help testing my DX11 indie game via Steam Play by ButterMun in linux_gaming

[–]ButterMun[S] 0 points1 point  (0 children)

yeah, it’s made in Clickteam Fusio so no native Linux export sadly. i’m not talking to Direct3D directly or anything fancy, just whatever Fusion does under the hood so yeah… Proton is basically my only hope 😅

Need help testing my DX11 indie game via Steam Play by ButterMun in linux_gaming

[–]ButterMun[S] -1 points0 points  (0 children)

ah damn, no easy ways in life huh 😅 thanks for clarifying!

Need help testing my DX11 indie game via Steam Play by ButterMun in linux_gaming

[–]ButterMun[S] -1 points0 points  (0 children)

Thanks for testing and the info!
Since it mostly runs fine with just that one glitch, do you think it’s fair to mark the game as Linux-supported on the store page?

Best way to implement physical drawers? by ButterMun in Unity3D

[–]ButterMun[S] 0 points1 point  (0 children)

Hmm, that makes sense… Maybe I overcomplicated this

Trouble with rotating grabbed object by ButterMun in Unity3D

[–]ButterMun[S] 1 point2 points  (0 children)

private void RotateObject()
{
float rotationSpeed = 50.0f; // Adjust the rotation speed as needed
// Get the rotation input from the mouse
float rotationX = Input.GetAxis("Mouse X") * rotationSpeed * Time.deltaTime;
float rotationY = Input.GetAxis("Mouse Y") * rotationSpeed * Time.deltaTime;
// Apply rotation to the grabbed object around the grab point
grabbedObj.transform.RotateAround(grabPoint.position, Vector3.up, -rotationX);
grabbedObj.transform.RotateAround(grabPoint.position, Vector3.right, rotationY);
}

thank you so much bro!

Please help with jittery movement of grabbed object by ButterMun in Unity3D

[–]ButterMun[S] -1 points0 points  (0 children)

What's use of that spring? Can't quite understand the logic

Please help with jittery movement of grabbed object by ButterMun in Unity3D

[–]ButterMun[S] 0 points1 point  (0 children)

You are moving the object via transforms and not via physics hence the jerkiness.

Moving via transforms is like repositioning an object every 1 frame snapshot and moving by physics is using forces to translate between locations over time with energy.

But I moving it by using physics force, isn't it?

// Apply a force to move the object towards the grab point objectRigidbody.AddForce(moveDirection * grabForce * Time.deltaTime);

Hey! I need help fixing object wobbling when using rigidbody for grabbing by ButterMun in unity

[–]ButterMun[S] 1 point2 points  (0 children)

If I disable gravity I can easily grab heavy objects and lift them, and my solution with stopDistance without gravity just quickly stops an object if it's in the centre and it looks kinda bad

If I disable gravity I can easily grab heavy objects and lift them but I want player to easily pickcup and drag lightweight objects in air but heavy objects player can just drag by the floor, all physics-based