admin管理员组

文章数量:1022853

I'm trying to import this plugin into my unity project (version 2022.3.24f1). I followed the installation guide on the github page as follows:

-I installed Unity Input System from the package manager;

-I changed the Manifest file and now it looks like this:

{
  "scopedRegistries": [
    {
      "name": "Keijiro",
      "url": ";,
      "scopes": [
        "jp.keijiro"
      ]
    }
  ],
  "dependencies": {
    "com.unity.timeline": "1.4.5",
    "com.unity.modules.uielements": "1.0.0"
  }
}

-I added this scoped register in the package manager: scoped manager

-I downloaded the zip file of the plugin from Github, extracted it and imported it into the asset folder of the project.

After the process, there are these 5 errors in the console: errors

Am I missing some steps? I think I did everything as told in the installation guide.

I'm trying to import this plugin into my unity project (version 2022.3.24f1). I followed the installation guide on the github page as follows:

-I installed Unity Input System from the package manager;

-I changed the Manifest file and now it looks like this:

{
  "scopedRegistries": [
    {
      "name": "Keijiro",
      "url": "https://registry.npmjs",
      "scopes": [
        "jp.keijiro"
      ]
    }
  ],
  "dependencies": {
    "com.unity.timeline": "1.4.5",
    "com.unity.modules.uielements": "1.0.0"
  }
}

-I added this scoped register in the package manager: scoped manager

-I downloaded the zip file of the plugin from Github, extracted it and imported it into the asset folder of the project.

After the process, there are these 5 errors in the console: errors

Am I missing some steps? I think I did everything as told in the installation guide.

Share Improve this question asked Nov 20, 2024 at 14:37 Raffaele NaccarelloRaffaele Naccarello 1
Add a comment  | 

1 Answer 1

Reset to default 1

The project from Keijiro is missing access to RtMidi.dll that you can find here:

https://github/keijiro/jp.keijiro.rtmidi/tree/master/Packages/jp.keijiro.rtmidi/Runtime/Windows

Inside this scrpit for instance, you have this import: using RtMidiDll = RtMidi.Unmanaged;

https://github/keijiro/Minis/blob/master/Packages/jp.keijiro.minis/Runtime/Internal/MidiPort.cs

To solve it you can import manuality from Keijiro repository.

I'm trying to import this plugin into my unity project (version 2022.3.24f1). I followed the installation guide on the github page as follows:

-I installed Unity Input System from the package manager;

-I changed the Manifest file and now it looks like this:

{
  "scopedRegistries": [
    {
      "name": "Keijiro",
      "url": ";,
      "scopes": [
        "jp.keijiro"
      ]
    }
  ],
  "dependencies": {
    "com.unity.timeline": "1.4.5",
    "com.unity.modules.uielements": "1.0.0"
  }
}

-I added this scoped register in the package manager: scoped manager

-I downloaded the zip file of the plugin from Github, extracted it and imported it into the asset folder of the project.

After the process, there are these 5 errors in the console: errors

Am I missing some steps? I think I did everything as told in the installation guide.

I'm trying to import this plugin into my unity project (version 2022.3.24f1). I followed the installation guide on the github page as follows:

-I installed Unity Input System from the package manager;

-I changed the Manifest file and now it looks like this:

{
  "scopedRegistries": [
    {
      "name": "Keijiro",
      "url": "https://registry.npmjs",
      "scopes": [
        "jp.keijiro"
      ]
    }
  ],
  "dependencies": {
    "com.unity.timeline": "1.4.5",
    "com.unity.modules.uielements": "1.0.0"
  }
}

-I added this scoped register in the package manager: scoped manager

-I downloaded the zip file of the plugin from Github, extracted it and imported it into the asset folder of the project.

After the process, there are these 5 errors in the console: errors

Am I missing some steps? I think I did everything as told in the installation guide.

Share Improve this question asked Nov 20, 2024 at 14:37 Raffaele NaccarelloRaffaele Naccarello 1
Add a comment  | 

1 Answer 1

Reset to default 1

The project from Keijiro is missing access to RtMidi.dll that you can find here:

https://github/keijiro/jp.keijiro.rtmidi/tree/master/Packages/jp.keijiro.rtmidi/Runtime/Windows

Inside this scrpit for instance, you have this import: using RtMidiDll = RtMidi.Unmanaged;

https://github/keijiro/Minis/blob/master/Packages/jp.keijiro.minis/Runtime/Internal/MidiPort.cs

To solve it you can import manuality from Keijiro repository.

本文标签: cI can39t import properly this plugin into my Unity projectStack Overflow