- Home /
Which is the namespace of the Joystick pack?,Which is the nameSpace of Joystick pack?
I need this namespace of this pack for associate the joystick to player script, the namespace is the name that you put after "using", like: using UnityEngine; HELP ME, PLEASE!!!,I want to know which is the nameSpace of JoystickPack https://assetstore.unity.com/packages/tools/input-management/joystick-pack-107631 I need the nameSpace to associate the joystick to the player, HELP ME PLEASE!!!
Answer by Fuzzel_ · Jun 04, 2020 at 12:19 AM
You can easily find the Namespace by looking at the scripts of this asset. Also, any good IDE will automatically try to import/suggest to import missing namespaces.
I did this, but I didn`t find, how can I know this specifically???
If the files of the asset do not specifiy any namespace they are inside the global namespace which means you can access them directly without having to use a using
directive.
In case you don't know what to look for a namespace declaration looks like this:
namespace NamespaceName {
public class XYZ {
// ...
}
}
Answer by Pedro1374 · Jun 04, 2020 at 12:24 AM
I did this, but I didn`t find, how can I know this specifically???
Your answer

Follow this Question
Related Questions
help with instantiating gameobject at random postition from a target gameobject? 1 Answer
Remove keyboard controls from Third Person Controller?? 2 Answers
How can i add a second camera that will be showing only specific gameobject in game window ? 1 Answer
What is fow meaning when doing zoom in/out with camera ? 2 Answers