Unity脚本
using System.Collections;
using System;
using System.Collections.Generic;
using UnityEngine;
using System.Diagnostics; //需要添加这个名词空间,调用DataReceivedEventArg
public class LoadPython : MonoBehaviour
{
string sArguments = @"UnityLoad.py";//这里是python的文件名字
// Use this for initialization
void Start()
{
RunPythonScript(sArguments, "-u");
}
// Update is called once per frame
void Update()
{
RunPythonScript(sArguments, "-u");
}
public static void RunPythonScript(string sArgName, string args = "")
{
Process p = new Process();
//python脚本的路径
string path = @"F:\pythonBuffer\" + sArgName;
string sArguments = path;
//(注意:用的话需要换成自己的)没有配环境变量的话,可以像我这样写python.exe的绝对路径
//(用的话需要换成自己的)。如果配了,直接写"python.exe"即可
p.StartInfo.FileName = @"python.exe";
//p.StartInfo.FileName = @"C:\Program Files\Python35\python.exe";
// sArguments为python脚本的路径 python值的传递路线strArr[]->teps->sigstr->sArguments
p.StartInfo.UseShellExecute = false;
p.StartInfo.Arguments = sArguments;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardInput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.CreateNoWindow = true;
p.Start();
p.BeginOutputReadLine();
p.OutputDataReceived += new DataReceivedEventHandler (Out_RecvData);
Console.ReadLine();
p.WaitForExit();
}
static void Out_RecvData(object sender, DataReceivedEventArgs e)
{
if (!string.IsNullOrEmpty(e.Data)) {
UnityEngine.Debug.Log (e.Data);
}
}
}
python脚本
# -*- coding: utf-8 -*-
PoemName = "杜甫《江畔独步寻花·其六》"
PoemTest = """
黄四娘家花满蹊,千朵万朵压枝低。
留连戏蝶时时舞,自在娇莺恰恰啼。
"""
print(PoemName)
print(PoemTest)
MottoEn = "A warm smile is the universal language of kindness."
MottoCh = "温暖的微笑是表示善意的通用语言。"
print(MottoEn)
print(MottoCh)