- Home /
Making a script's functions available with 'using...'
I want to make something for the asset store, and I want someone to be able to put 'using myScript' and then be able to access the functions that I have written in it. How can I do this?
Comment
ensure that all of your code is within your own namespace
, but make sure it's unique to avoid conflicts with other assets although that may not apply in all cases. depends how one would use your asset...
Ah, namespace. After a bit of research I now know how to use a namespace. Thank you!
Your answer
Follow this Question
Related Questions
Multiple Cars not working 1 Answer
Distribute terrain in zones 3 Answers
What is the equivalent of using in javascript? 1 Answer
Pacman ghost behaviour 0 Answers
How to correctly send a variable to another function? 1 Answer