I am new to unity and I am learning it kinda fast but I need help with a couple of things
I bought a complete match 3 game from the asset store and I need to see if I can get some help makeing some changes
1 how can i change the speed of the berries that drop
2 How to change what berries will drop after a match is made
3 How to stop some many powerups from happening
4 How to change from saving to playerprefs to a database
any help with any of these would be great the person I bought it from will not answer any emails at all no support
The things you wanna change may depend on one or more things like physics, pos, scale, force etc…
It totally depends on how developer created it, for alternation you need to get in detail with scripting he/they made…
Without in depth detail one should not alter any part of game as this might cause in proper behaviour of game and game play might affect …
try to find the bit in the script where you move the items then follow it down to see what happens when a match is made. the berries moving should be after that. It may be best to put a breakpoint in at that bit & then step through the code until you find what is causing them to fall. Once that value is found you can search the project for where it is used & track it back to where the value is first set.
also read the code comments. The dev should have commented all the code so people can follow what is happening on each script
Then it looks like you will have to put a break point in somewhere & step through it until you find the bit you need. Everyone creates & structures their code differently so the answer could be anywhere. Sorry