Giter Club home page Giter Club logo

klakhap's Introduction

KlakHAP

GIF

KlakHAP is a Unity plugin that allows playing back a video stream encoded with the HAP video codecs.

HAP is a fast and high-quality video codec often used in real-time interactive applications. From the HAP Codecs website:

The HAP codecs are designed to fit the needs of a variety of real-time video workflows where ultra high resolution video is needed such as live event production, set design, 360 video for gaming, projection mapping and creative coding.

KlakHAP provides video frames as textures that can be used in any way on Unity's rendering pipeline — attaching to a material, presenting a full-screen video, animating a UI element, etc. Thanks to the performant design and implementation of the HAP codecs, it can dynamically control the playback time/speed without any hiccups.

System requirements

  • Unity 2019.4 or later

At the moment, KlakHAP only supports 64-bit desktop platforms (Windows, macOS and Linux).

Supported formats

KlakHap supports HAP, HAP Alpha and HAP Q. At the moment HAP Q Alpha is not supported.

KlakHap only supports QuickTime File Format as a container — in other words, it only supports .mov files.

Installation

This package uses the scoped registry feature to resolve package dependencies. Please add the following sections to the manifest file (Packages/manifest.json).

To the scopedRegistries section:

{
  "name": "Keijiro",
  "url": "https://registry.npmjs.com",
  "scopes": [ "jp.keijiro" ]
}

To the dependencies section:

"jp.keijiro.klak.hap": "0.1.20"

After changes, the manifest file should look like below:

{
  "scopedRegistries": [
    {
      "name": "Keijiro",
      "url": "https://registry.npmjs.com",
      "scopes": [ "jp.keijiro" ]
    }
  ],
  "dependencies": {
    "jp.keijiro.klak.hap": "0.1.20",
    ...

How to specify a video file

There are two methods to specify a video file in the plugin:

  • Streaming Assets Mode: Put a video file in the Streaming Assets directory and specify its file name.
  • Local File System Mode: Put a video file somewhere in local drive and specify its full path name.

The former method is recommended when the video file is delivered within the application. The latter method is useful when it needs to play an external content.

Hap Player component

Inspector

File Path and Path Mode are used to specify a source video file. Please see the previous section for details.

Time, Speed and Loop are used to set the initial playback state. You can also use these values to change the current state while playing.

Target Texture is used to store decoded frames into a render texture. Note that it allocates a small amount of GPU time for data transfer.

Target Renderer is used to apply a decoded texture to a specific material property. Although it's the most performant way to render video frames, it needs a few additional steps to be rendered correctly. The following points should be taken into account:

  • UV coordinate incompatibility: Decoded textures will be upside-down due to the difference in the UV coordinates conventions between Unity and HAP. It can be fixed using a vertically-inverted texture scale/offset. You can also use the Klak/Hap shader for this purpose.
  • Color space conversion for HAP Q: YCoCg conversion must be added to a shader when using HAP Q. You can also use the Klak/HAP Q for this purpose.

How to control playback

HapPlayer only provides a few properties/methods for controlling playback. This is an intentional design choice; I don't like to introduce ambiguity by adding common methods like Play, Stop or Pause. You can use the basic properties/methods to control playback instead.

  • To jump to a specific point: Assign a time in seconds to time.
  • To jump to a specific frame: Calculate the time in seconds using frameCount and streamDuration then assign it to time.
  • To reverse the playback direction: Assign a negative value to speed.
  • To pause: Assign 0 to speed.
  • To resume: Assign 1 to speed.
  • To stop: Assign false to enabled.
  • To close the video file: Destroy the HapPlayer component.
  • To open another video file: AddComponent<HapPlayer> then call Open.

Timeline support

GIF

The HAP Player component implements the ITimeControl interface that makes it able to control the playback time from a Control Track in a Timeline. You can easily create a control track with drag-and-dropping a HAP Player game object into the Timeline Editor, or manually create a Control Track/Clip and set the source game object.

Platform differences (internal latency)

On Windows, KlakHAP uses the Custom Texture Update feature to hide the synchronization point in the background thread. It guarantees exact-frame playback with minimum load on the main thread.

On macOS and Linux, the Custom Texture Update feature for this purpose is unavailable1. Instead, KlakHAP delays synchronization to the successive frame to avoid main thread stalls. In other words, it guarantees exact-frame playback but with a single-frame latency.

You can turn off this behavior by adding HAP_NO_DELAY to the Scripting Define Symbols in the project settings. It stalls the main thread for every frame decoding. It would significantly slow down the application but is useful when exact frame matching is essential (e.g., volumetric video playback with Alembic animation).

Footnotes

  1. The Custom Texture Update feature is available even on macOS/Linux but doesn't support compressed texture formats, which are essential for HAP decoding.

klakhap's People

Contributors

keijiro avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

klakhap's Issues

Stutter when using the Unity Recorder @ 25 FPS

Edit: Recording at 60fps works and remove the stutter.

Hi Keijiro,

KlakHap is awesome and until now I had no issue, or at least I did not notice as I mainly used it inside shaders for BG stuff in a recent video.
But now I need an HD RT and while it's working perfectly in Editor when Recording, the RT seems to stutter.
I'm controlling it using the timeline and a control track, I'll look more into it tomorrow, but if you can point me to it if you have a clue.

Thanks

Video with alpha and interaction with the environment

Hi Keijiro!

Quick question about the interaction of video with alpha channel and light sources. I can't do it so that the video can interact with the environment. Could you tell me how to make the alpha video interact with light and other environmental effects?

I understand that in order for a video with alpha to be influenced by light sources, you need to put one more material. But I do not know what to put. Sorry for the stupid questions.

The only time when my alpha video started interacting with a light source - I changed the shader to Sprites/Diffuse.

But I understand that this is not quite the right move. Please tell me the right decision.

Thnx.

filePath inaccessible

Hello and thx for your amazing work.
Quick note: it would be very usefull to have access to the path variable in HapPlayer:

public string filePath
{
get { return _filePath; }
set { _filePath = value; }
}

Hard drive activity time is always 100%

I play a video of about 30G in Unity, but after playing for a while, the hard disk activity is always 100% and then the video starts to freeze. What do I need to change to this problem?

Dreams: Mobile support?

Video's with alpha are quite the issue on mobile phones (mostly Android), for it to work, it needs to be trans-coded by Unity itself, files are large, quality is meh. Is there any hope to get some support for Android/iOS in the future? Or would that mean the whole library needs to be rewritten?

KlakHap and WebGL

Hi Keijiro,

I use KlakHap to play hap videos with Path Mode Local File System. All is working well and for Unity desktop builds it is so far the best and only way if lossless scrubbing frame by frame is needed.

Now I tried to publish a WebGL build. But as soon as a hap video should be opened WebGL stops and a long bug report will be thrown out. I tried Path Mode Streaming Asset, but had no success. The same thing happens with standard Unity mp4 video player and local file system. As I read in serveral posts the problem can be solved by loading videos from url.

My question: Is there a way in KlakHap to play hap videos in WebGL? For example with Path Mode URL instead of Streaming Asset or Local File System?

Thanks

Frame Rate issue

There seems to be an error with the video playback.

If for example you screen is set to 30Hz the playback time will be wrong unless the vsync option in quality settings in Unity are disable. Other way is to set your screen to 60Hz in the display settings.

The same issue if your app for some reason has performance issues, the video time will be not correct and the video playback will go slower than it should. Expected behaviour should be to display the right time and be in the right frame even if some frames are skipped.

Hap player throws error when on iOS but not on PC

Hi,

Your plugin is working great on PC/Desktop, but when trying to run the game on iOS, it throws this error every frame:

`DllNotFoundException: Unable to load DLL 'KlakHap': The specified module could not be found.
at Klak.Hap.Demuxer.KlakHap_OpenDemuxer (System.String filepath) [0x00000] in <00000000000000000000000000000000>:0
at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00000] in <00000000000000000000000000000000>:0
at Klak.Hap.HapPlayer.OpenInternal () [0x00000] in <00000000000000000000000000000000>:0
at Klak.Hap.HapPlayer.LateUpdate () [0x00000] in <00000000000000000000000000000000>:0

(Filename: currently not available on il2cpp Line: -1)`

What could be the reason that this would be happening on mobile, but not on PC?

Thanks in advance for any help.

Charlie

Android port

Trying to port to Android to play small video loops on a ChromeBook,, the Hap larger file size is not an issue as the videos I'm using are quite small.

I was able to build the library .so (tried both arm7 and arm64) but when run on device the videos are blank with an error: DllNotFoundException: Unable to load DLL 'KlakHap': The specified module could not be found.

Looking inside the .apk and the libKlakHap.so is included so I'm not sure what is wrong?

Video won't show in player

The player will work correctly with some videos I downloaded from the web. But when I try with the videos I need it to play (created videos at work) those videos will not show, it will just be a transparent mesh.
I've tried with different types of rendering. The images below show the videos being rendered to a Render Texture placed in a material on a plane. I've also tried with sprite renderer but the issue persists.

The only differences between the videos are the resolution and the frame rate. The working videos have a resolution of 1920 X 1080 with a frame rate of 30 fps, and the videos I created are 1920 X 670 with a frame rate of 60 fps.

It would be much appreciated if you could help me with this issue.

Thanks for the hard work and support!

This is the working video
image

This is the video I need working
image

Feature request; audio playback

Hi, I love the frame accurate nature of your plugin, but wish it had audio. The use case is in content production.

I’d be looking for surround sound support.

request function

thanks for that.Using klakhap play hap is good but cant find method get current frame index in playing state. and can you add example to show how using external time mode,thanks very much.I want the host to play the video and then the other machines play it through the received sequence frame number. Thanks again, if possible.

error regarding StreamReader.cs

While importing the project on windows with the unity version --> 2018.1.0b4 I am getting the following error,
Assets/Klak/Hap/Runtime/Internal/StreamReader.cs(26,24): error CS1644: Feature `tuples' cannot be used because it is not part of the C# 6.0 language specification

can u please tell me how to resolve this issue?

ArrayTypeMismatchException in ReaderThread happens sometimes

The following exception sometimes occurs at runtime, after running for multiple hours. I'm playing two HAP videos at the same time of about 40 seconds length. When they are done, they are manually restarted (in code) so I can sync them with sound playback.
This is on Linux (Ubuntu). I've never even seen this C# exception before and I don't understand it at all. How can it be possible to access an Array element as the wrong type?
Do you have any ideas why this could happen? And why it is not all the time, but only sometimes?

player.x86_64[1959]: ArrayTypeMismatchException: Attempted to access an element as a type incompatible with the array.
player.x86_64[1959]:   at (wrapper stelemref) System.Object.virt_stelemref_sealed_class(intptr,object)
player.x86_64[1959]:   at System.Collections.Generic.List`1[T].Add (T item) [0x0001e] in <d7ac571ca2d04b2f981d0d886fa067cf>:0
player.x86_64[1959]:   at Klak.Hap.StreamReader.ReaderThread () [0x0009b] in <8c11eb63c8154898ad94ab5fceee64fa>:0
player.x86_64[1959]:   at System.Threading.ThreadHelper.ThreadStart_Context (System.Object state) [0x00014] in <d7ac571ca2d04b2f981d0d886fa067cf>:0
player.x86_64[1959]:   at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, Sys
player.x86_64[1959]:   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Bool
player.x86_64[1959]:   at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state) [0x0002b] i
player.x86_64[1959]:   at System.Threading.ThreadHelper.ThreadStart () [0x00008] in <d7ac571ca2d04b2f981d0d886fa067cf>:0
player.x86_64[1959]: UnityEngine.DebugLogHandler:Internal_LogException()
player.x86_64[1959]: UnityEngine.DebugLogHandler:LogException(Exception, Object)
player.x86_64[1959]: UnityEngine.Logger:LogException(Exception, Object)
player.x86_64[1959]: UnityEngine.Debug:LogException(Exception)
player.x86_64[1959]: UnityEngine.UnhandledExceptionHandler:<RegisterUECatcher>m__0(Object, UnhandledExceptionEventArgs)

'event' could not be found (are you missing a using directive or an assembly reference?)

hello keijiro,

platform: windows 10
unity 2019.4.4f1

C:\Program Files\Unity\Hub\Editor\2019.4.4f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.ugui\Runtime\UI\Core\InputField.cs(1628,40): error CS0246: The type or namespace name 'Event' could not be found (are you missing a using directive or an assembly reference?)

did i miss anything?

Dynamically switch videos

Hi
Thanks for providing this excellent resource to the community.
I have 2 looping videos that I simply want to switch between at runtime
Simply calling the Open method alone with the new video file isn't sufficient to do this.

These are the changes I made to the Open method. Will I have any garbage collection issues?

`public void Open(string filePath, PathMode pathMode = PathMode.StreamingAssets)
    {
        if (_demuxer != null)
        {
            Debug.LogError("Stream has already been opened.");
            //return;
             _demuxer.Dispose();// new line
            _demuxer = null; // new line
        }

        _filePath = filePath;
        _pathMode = pathMode;

        OpenInternal();
    }`

Feature Request: dropped frames or missed timing

I would love to be able to do some performance testing in the field on the final hardware. Right now, I'm experiencing some performance problems and it's hard to pin point. The content is such that it's not always obvious to see if frames were skipped.
Are frames actually skipped, or does the playback speed just suffer and the frame is delivered on the next refresh? Either way, I'd love to either have a dropped frames count, or a "missed timing" count (for when the appropriate timing for a frame was not reached).
This way I can show this number in the UI and do various tests to see if I can improve playback performance. This would be highly appreciated. Thanks for all the work!

If there is another way for me to achieve this result, and I just missed it, please let me know too.

Plugins: Failed to load '{Plugin Path}/KlakHap.dll'

OS: Window 7 Pro SP1 64bit
Unity: 2019.1.2f

I got some error when launch the unity executable build file(.exe).

Plugins: Failed to load '{Plugin Path}/KlakHap.dll' because one or more of dependencies could not be loaded.

How can I fix it?

Videos encoded with the -chunks flag in ffmpeg cause Unity to silently crash on play

Just tested out the HAP player. Was using this command to encode videos:
ffmpeg -i "C:\Users\kyle\Desktop\working folder\keijiro-dk-test\Assets\Depthkit\Examples\Clips\Julianne\Julianne.mp4" -codec:v hap -format hap -chunks 8 "C:\Users\kyle\Desktop\working folder\keijiro-dk-test\Assets\StreamingAssets\Julianne.mov"

Unity kept crashing on start. I traced the issue to the DLL but obviously couldn't peek inside of it. I tried different encode presets and eventually found that the same command worked as long as I didn't specify chunk amount:

ffmpeg -i "C:\Users\kyle\Desktop\working folder\keijiro-dk-test\Assets\Depthkit\Examples\Clips\Julianne\Julianne.mp4" -codec:v hap -format hap "C:\Users\kyle\Desktop\working folder\keijiro-dk-test\Assets\StreamingAssets\Julianne1.mov"

Would love chunk support as to better control video decoding!

Unity 2019.1.0f2 Build Bug

when using unity 2019.1.0f2 build to exe (mono or il2cpp mode), klak plugin dll cant auto move.The dll file must be moved manually.This is unity bug.

Freeze with small video

When adding a video with small pixel size, the editor freezes as soon as I type the filename in the File Path text field.

I am using HAP Alpha from the StreamingAssets folder on a Mac.

I have attached two videos. Both are exactly the same only the bigger one has increases pixel dimensions.
Videos.zip

Doesn't work in HDRP builds?

If I make a fresh HDRP project (on 2020.6), and add a klaphap video screen - it works correctly in editor, but when playing the build it shows as a white texture. (as if the video is not found).

If I follow the same steps with a Unity 3D pipeline, it works in the build correctly.

question exe not showing video - thanks

Hello, thanks in advance, I'm new in Unity .please what am I missing, none of my build .exe files play the video texture (HAP Alpha)... all good in editor. 3d project 2020.1.16f.

DllNotFoundException: KlakHap

When I press the Unity play button, the video plays both on the Scene and Game views. When I execute outside Unity, using Build and Run, the video doesn't play and I get the DllNotFoundException: KlakHap in the logs.

Unity 2019.2.1f1
KlakHap 0.1.11

I tried renaming folder Plugin to Plugins and folder Windows to x86_64. I also tried moving the folder Plugins to Assets. Nothing seems to fix it...

Mono path[0] = 'E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Managed'
Mono config path = 'E:/Unity/augmentedretail2/Builds/MonoBleedingEdge/etc'
Initialize engine version: 2019.2.1f1 (ca4d5af0be6f)
[XR] Discovering subsystems at path E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/UnitySubsystems
GfxDevice: creating device client; threaded=1
Direct3D:
    Version:  Direct3D 11.0 [level 11.1]
    Renderer: NVIDIA Quadro RTX 5000 (ID=0x1eb0)
    Vendor:   (null)
    VRAM:     3072 MB
    Driver:   26.21.14.3170
Begin MonoManager ReloadAssembly
- Completed reload, in  1.144 seconds
<RI> Initializing input.

<RI> Input initialized.

<RI> Initialized touch support.

UnloadTime: 1.910500 ms
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/KlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/KlakHap.dll
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/KlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/libKlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/libKlakHap.dll
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/libKlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/KlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/KlakHap.dll
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/KlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/libKlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/libKlakHap.dll
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/libKlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/KlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/KlakHap.dll
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/KlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/libKlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/libKlakHap.dll
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/libKlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/KlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/KlakHap.dll
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/KlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/libKlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/libKlakHap.dll
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/libKlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/KlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/KlakHap.dll
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/KlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/libKlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/libKlakHap.dll
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/libKlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/KlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/KlakHap.dll
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/KlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/libKlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/libKlakHap.dll
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/libKlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/KlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/KlakHap.dll
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/KlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/libKlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/libKlakHap.dll
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/libKlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/KlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/KlakHap.dll
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/KlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/libKlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/libKlakHap.dll
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/libKlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/KlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/KlakHap.dll
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/KlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/libKlakHap
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/libKlakHap.dll
Fallback handler could not load library E:/Unity/augmentedretail2/Builds/AugmentedRetail_Data/Mono/libKlakHap
DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

Setting up 8 worker threads for Enlighten.
  Thread -> id: 56bc -> priority: 1 
  Thread -> id: 56b8 -> priority: 1 
  Thread -> id: 2404 -> priority: 1 
  Thread -> id: 56b4 -> priority: 1 
  Thread -> id: 5434 -> priority: 1 
  Thread -> id: 56c0 -> priority: 1 
  Thread -> id: 5264 -> priority: 1 
  Thread -> id: 808 -> priority: 1 
DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

DllNotFoundException: KlakHap
  at (wrapper managed-to-native) Klak.Hap.Demuxer.KlakHap_OpenDemuxer(string)
  at Klak.Hap.Demuxer..ctor (System.String filePath) [0x00006] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.OpenInternal () [0x00007] in <188d45526fc043d99dbe86172f53246f>:0 
  at Klak.Hap.HapPlayer.LateUpdate () [0x00015] in <188d45526fc043d99dbe86172f53246f>:0 
 
(Filename: <188d45526fc043d99dbe86172f53246f> Line: 0)

Turn off Texture Compression?

Hi,
when playing a Hap alpha video (windows) I noticed the colors are slightly off. I think this may be due to texture compression. Is there a way to turn off compression?
(when viewing in an external video player the colors look fine)

Thanks!

KlakHap.bundle is damaged and can't be opened

MacOS 10.15.6
Unity 2019.4.7f1
Issue when opening the master folder as a new project in Unity. Error message is shown when trying to open the test scene
Fixed by cloning the KlakHap.bundle using the following command in terminal:
cp -RX /path/to/program.app /different/path.app

Screen Shot 2020-08-06 at 10 23 42 PM

Screen Shot 2020-08-06 at 10 23 44 PM

preload assets to ram memory

can you add a function to load all resources to memory when hard disk speed is not fast. Memory is cheaper than the ssd hard disk, and the memory speed is much faster than the ssd hard disk.
thanks

Video stops playing after a few seconds

Playing a 6144x3072 60FPS HAP.mov.

Plays well, to begin with, but after 5seconds or so the image stops and strange compression artifacts begin.

image

Thanks for your help!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.