Skip to content

Commit d199828

Browse files
committed
Update meta files to 2019.3.11f1
1 parent 418d91e commit d199828

18 files changed

+42
-24
lines changed

CHANGELOG.md.meta

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Examples.meta

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Examples/PythonHelloWorld.cs.meta

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Examples/PythonLibrary.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using UnityEngine;
22
using IronPython.Hosting;
3+
using IronPython.Runtime;
34

45
namespace Exodrifter.UnityPython.Examples
56
{
@@ -24,6 +25,12 @@ import os
2425
var source = engine.CreateScriptSourceFromString(code);
2526
source.Execute(scope);
2627

28+
// First, compile the python module to a dll
29+
// ClrModule.CompileModules();
30+
31+
// Then, load it
32+
engine.ImportModule("ctypes");
33+
2734
Debug.Log(scope.GetVariable<string>("filename"));
2835
}
2936
}

Examples/PythonLibrary.cs.meta

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Examples/PythonUnityHelloWorld.cs.meta

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

IronPython-2.7.9/IKVM.Reflection.dll.meta

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

IronPython-2.7.9/IronPython.Modules.dll.meta

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

IronPython-2.7.9/IronPython.SQLite.dll.meta

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

IronPython-2.7.9/IronPython.dll.meta

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)