You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merging stuff is taking as much time as writing it from scratch.
This is not good.
Please note that when 2 users modidy the same script, that creates 2 different versions of it.
Then somebody has to go and figure out how to merge those 2 versions.
Needless to say, they may stop working when they are put together.
That's why it takes time to merge, because if you first have to put them together and then make sure that they still work when you put them together.
You want to operate on an object somebody else is using?
Create a new script component and do not touch the code in the other scripts.
If you need to modify variables in other scripts, then inform the other person.
The easiest way would be to make those variables public, but it may not always work if you are modifying them at the same time. So, ask the other person and discuss what the best approach would be.
The text was updated successfully, but these errors were encountered:
Merging stuff is taking as much time as writing it from scratch.
This is not good.
Please note that when 2 users modidy the same script, that creates 2 different versions of it.
Then somebody has to go and figure out how to merge those 2 versions.
Needless to say, they may stop working when they are put together.
That's why it takes time to merge, because if you first have to put them together and then make sure that they still work when you put them together.
You want to operate on an object somebody else is using?
Create a new script component and do not touch the code in the other scripts.
If you need to modify variables in other scripts, then inform the other person.
The easiest way would be to make those variables public, but it may not always work if you are modifying them at the same time. So, ask the other person and discuss what the best approach would be.
The text was updated successfully, but these errors were encountered: