Skip to content

Unity 5 x64 compatibility  #6

Description

It would be nice for this package to work out of the box with unity5 x64. I had to make the following changes for it to work
DLL's required:
libpdcsharp.dll x64 version built from libpd repo
libwinpthread-1.dll x64 version from same libpd repo

LibPDNativeMethods ln 89

/// Init PD
        [DllImport(DllName, EntryPoint="libpd_safe_init", CallingConvention = CallingConvention)]
        private static extern void libpd_init() ;

Changed to:

/// Init PD
        [DllImport(DllName, EntryPoint="libpd_init", CallingConvention = CallingConvention)]
        private static extern void libpd_init() ;

Reference
https://stackoverflow.com/questions/40235885/howto-upd-with-unity-5/40245381#40245381

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions