I made a jelly softbody in Unity, and I've tried to make it bouncier (so that after an object lands on it, it bounces into the air higher than it does normally), but I can't seem to figure out how to do it. I've tried to alter every single aspect of the objects to bounce and the jelly itself that I could find, such as spring joint frequency, and rigidbody components for the softbody, but nothing made it bounce more from the jelly. I followed this tutorial: https://www.youtube.com/watch?v=3avaX00MhYc but made a center bone instead of using bones on opposite sides. Here are some screenshots of different aspects: https://i.stack.imgur.com/KWhUs.jpg This has been stumping me for the past week now, so I would appreciate any ideas.
How to make a softbody bouncier in Unity 2D?
781 Views Asked by Omega Productions At
1
There are 1 best solutions below
Related Questions in C#
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in UNITY-GAME-ENGINE
- Using arrow keys to rotate an object
- know object behind another object is fully visible
- Unity3d AudioSource not creatable
- Unity3d - Input.GetKey returns true more than once
- Flurry Ads on Unity3D with Prime31 plugin
- Make screenshot of DirectX window that is hidden and doesn't have focus
- Coroutine being detected as inactive despite being active
- Unity3D: Adding charged force in relation to position
- Unity - Particles emitting non-random
- 3d mouse aim camera 3rd person vertical C#
- Unity: How would I go about creating a power up system?
- Unity - Gui Button issues (Android)
- Unity3d strange Collider behaviour
- Start() function doesn't work properly after Application.LoadLevel
- Gravity works weird
Related Questions in 2D
- Algorithm for drawing tiles on screen
- Object doesn't moving well in rotation
- Cocos2d : Shooting a ball in the direction of the mouse click/Touch
- Error: cannot convert 'int (*)[3]' to 'int (*)[100]' for argument '1' to 'void repl(int (*)[100], int, int)'
- How to add a string to a 2D array in C
- Fitting 2D sum of gaussians, scipy.optimise.leastsq (Ans: Use curve_fit!)
- Java 2D game random rectangles
- 2D perspective transform in JavaScript
- List of 2D Arrays with numpy
- Make two physics objects not collide but do detect collisions in Unity
- Index of an array from a 2d np.array in Python?
- Generate 2D grid with alternation probability
- how to add Scoring to unity3D 2d top down car game?
- Blurring in PyGame
- Destroy Gameobject according to distance value
Related Questions in UNITY3D-2DTOOLS
- Blur the camera at a particular point Unity2D
- Creating slider menu for selecting an option using scroll view unity?
- Unity 2D side scrolling game stutter/jerk/lag issue when run on iOS devices
- Password InputField Censored (****) - Logging and Registration
- NullReferenceException in UI Text component
- Unity UI text Underlap with gameobject and Nullreference in timer
- Customize input fields and buttons in Unity
- Unity 2D C# - no collision inside an object
- Tiled2Unity pink prefab in unity 5
- Sprite texture not repeating unity
- Unity 3D - Move 2D sprite around the screen edges clockwise/anticlockwise
- How to Play Video in Unity 2D?
- raycast not showing hit
- Create a simple button in Unity3D 2D mode
- Unity - different phones sizes
Related Questions in SOFTBODY
- How to create 2D physics blob similar to the "Sushi Cat Game" using javascript physics engine?
- How to make soft body (jello) objects or arrays?
- How do I make a softbody jello sphere with NVIDIA FleX in Unity3D?
- Soft-body simulation of an UV ball with mass spring method does not work?(Opengl C++)
- B-Spline for any number of control points
- Soft body engine in C++
- Softbody in WebGL/Three.js?
- How to make a softbody bouncier in Unity 2D?
- Simulate a rope bridge
- How to give a softbody a collision shape in Godot 4
- Tracking the Mesh of Deformables (3D .obj files) in PyBullet Simulation (Python)
- How do I made physics spring joint with angular spring
- How to synchronize data for OpenGL compute shader soft body simulation
- Is there a way to make a soft body with Spritekit using SKSpriteNode and PhysicsBody parameters?
- Shape-matching soft body dynamics - implementing formula
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I've figured it out and it turns out I just needed to add force to the object to bounce OnCollisionExit with the softbody as well as add force to the softbody bones downwards OnCollisionEnter with an object so it still maintains the effect. Here's my code if anyone else would like to implement something like this into their game: