热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

unity3dc#脚本例子

usingSystem.Collections;usingSystem.Collections.Generic;usingUnityEngine;usingSystem.IO

using System.Collections;

using System.Collections.Generic;

using UnityEngine;

using System.IO;

using System.Runtime.InteropServices;    //添加如下命名空间 需要是用 DllImport

//引用内存映射文件命名空间

using System.IO.MemoryMappedFiles;

using System.Security.Principal;

using UnityEngine.Networking;

 

public class NewBehaviourScript : MonoBehaviour

{

[DllImport(@"unitydll", EntryPoint = "testhello")]

    public static extern int testhello(int a, int b);

[DllImport(@"unitydll", EntryPoint = "CreateSharedMemory")]

    public static extern void CreateSharedMemory();

[DllImport(@"unitydll", EntryPoint = "DestorySharedMemory")]

    public static extern void DestorySharedMemory();

[DllImport(@"unitydll", EntryPoint = "SetVCamData")]

    //public static extern void SetVCamData(const unsigned char* lpcData, int nSrcWidth, int nSrcHeight);

public static extern void SetVCamData(System.Byte[] lpcData, int nSrcWidth, int nSrcHeight, int len);

    [DllImport(@"user32.dll", EntryPoint = "ShowWindow")]

    public static extern bool ShowWindow(System.IntPtr hwnd, int nCmdShow);

    [DllImport("user32.dll", EntryPoint = "GetForegroundWindow")]

    public static extern System.IntPtr GetForegroundWindow();

 

    [DllImport("user32.dll", SetLastError = true)]

    private static extern System.IntPtr FindWindow(string lpClassName, string lpWindowName);

 

//[DllImport(@"unitydll", EntryPoint = "GetVCamData")]

   // public static extern BOOL GetVCamData(System.Byte[] lpcData, int& width, int& height);

public Camera mainCam; //待截图的目标摄像机

    RenderTexture rt;  //声明一个截图时候用的中间变量 

    Texture2D t2d ;

    int num = 0;  //截图计数

int sum2 = 0;

int imageWidth = 800;

int imageHeight = 600;

//定义游戏物体

GameObject m_obj;

 

    void Start () {

//找到物体

m_obj = GameObject.Find("3dgift_loli_dance01");

 

//设置帧率

Application.targetFrameRate=15;

        t2d = new Texture2D(800,600,TextureFormat.RGBA32,false);

        rt = new RenderTexture(800, 600, 32);

        mainCam.targetTexture = rt;

Debug.Log("test **********");

sum2 = testhello(3,4);

Debug.Log("调用dll接口:"+sum2.ToString());

CreateSharedMemory();

//隐藏窗口

ShowWindow(FindWindow(null, "New Unity Project9"), 0);

    }

    

    void Update () {

//开始播放动画

if (Input.GetKeyDown(KeyCode.W))

{

m_obj.transform.GetComponent().wrapMode = WrapMode.Loop;

m_obj.transform.GetComponent().Play ("jump");

}

//停止播放动画

if (Input.GetKeyDown(KeyCode.Q))

{

m_obj.transform.GetComponent().wrapMode = WrapMode.Loop;

m_obj.transform.GetComponent().Stop ("jump");

}

//显示、隐藏物体

if (Input.GetKeyDown(KeyCode.Q))

{

//隐藏物体

m_obj.SetActive(false);

//显示物体

//m_obj.SetActive(true);

}

        //按下空格键来截图

        //if (Input.GetKeyDown(KeyCode.Space))

        {

            //将目标摄像机的图像显示到一个板子上

            //pl.GetComponent().material.mainTexture = rt;

//CreateSharedMemory();

            //截图到t2d中

            RenderTexture.active = rt;  

//int width = rt.width;

//int height = rt.height;

//Debug.Log("当前截图宽为:"+width.ToString());

//Debug.Log("当前截图高为:"+height.ToString());

            t2d.ReadPixels(new Rect(0, 0, rt.width, rt.height), 0, 0);

            t2d.Apply();

            RenderTexture.active = null;

            //将图片保存起来

           // byte[] byt = (byte[])t2d.EncodeToPNG().Clone();

byte[] byt = t2d.EncodeToPNG();

int test_length = byt.Length;

//Debug.Log("当前截图长度为:"+test_length.ToString());

           // File.WriteAllBytes(Application.dataPath + "//"+ num.ToString() +".png", byt);

//var data = t2d.GetRawTextureData();

 

SetVCamData(byt, 800, 600, test_length);

           // Debug.Log("当前截图序号为:"+num.ToString());

           // num++;

        }          

    }

 

}

 


推荐阅读
  • C#实现文件的压缩与解压
    2019独角兽企业重金招聘Python工程师标准一、准备工作1、下载ICSharpCode.SharpZipLib.dll文件2、项目中引用这个dll二、文件压缩与解压共用类 ... [详细]
  • WPF项目学习.一
    WPF项目搭建版权声明:本文为博主初学经验,未经博主允许不得转载。一、前言记录在学习与制作WPF过程中遇到的解决方案。使用MVVM的优点是数据和视图分离,双向绑定,低耦合,可重用行 ... [详细]
  • NPM 脚本 'start' 退出,未显示 create-react-app 服务器正在监听请求
    遇到 NPM 脚本 'start' 退出且未显示 create-react-app 服务器正在监听请求的问题,请求帮助。 ... [详细]
  • 本文详细探讨了在Java中如何将图像对象转换为文件和字节数组(Byte[])的技术。虽然网络上存在大量相关资料,但实际操作时仍需注意细节。本文通过使用JMSL 4.0库中的图表对象作为示例,提供了一种实用的方法。 ... [详细]
  • 函子(Functor)是函数式编程中的一个重要概念,它不仅是一个特殊的容器,还提供了一种优雅的方式来处理值和函数。本文将详细介绍函子的基本概念及其在函数式编程中的应用,包括如何通过函子控制副作用、处理异常以及进行异步操作。 ... [详细]
  • 本文详细介绍了Oracle 11g中的创建表空间的方法,以及如何设置客户端和服务端的基本配置,包括用户管理、环境变量配置等。 ... [详细]
  • 本文探讨了如何通过Service Locator模式来简化和优化在B/S架构中的服务命名访问,特别是对于需要频繁访问的服务,如JNDI和XMLNS。该模式通过缓存机制减少了重复查找的成本,并提供了对多种服务的统一访问接口。 ... [详细]
  • 如何高效解决Android应用ANR问题?
    本文介绍了ANR(应用程序无响应)的基本概念、常见原因及其解决方案,并提供了实用的工具和技巧帮助开发者快速定位和解决ANR问题,提高应用的用户体验。 ... [详细]
  • 本文探讨了在使用JavaMail发送电子邮件时,抄送功能未能正常工作的问题,并提供了详细的代码示例和解决方法。 ... [详细]
  • 本文探讨了如何通过优化SOAP服务调用和多线程处理来减少生成的事件数量,并提高加载大量实体的效率。 ... [详细]
  • 本文详细介绍了Android系统的四层架构,包括应用程序层、应用框架层、库与Android运行时层以及Linux内核层,并提供了如何关闭Android系统的步骤。 ... [详细]
  • c#  项目文件,C#viual studio使用方法
    一、项目文件1)Properties节点下主要存放的是当前程序集相关的信息,如版本号、标题等。双击”Properties“,打开如下项目属 ... [详细]
  • pypy 真的能让 Python 比 C 还快么?
    作者:肖恩顿来源:游戏不存在最近“pypy为什么能让python比c还快”刷屏了,原文讲的内容偏理论,干货比较少。我们可以再深入一点点,了解pypy的真相。正式开始之前,多唠叨两句 ... [详细]
  • 我自己做了一个网站图片的抓取,感觉速度有点慢抓取4000张图片可能得用15分钟左右的时间,我百度看用线程可以加快抓取,然后创建了5个线程抓取,但是5个线程是同步执行同样的操作一个图片就 ... [详细]
  • 本文详细介绍了在Linux操作系统上安装和部署MySQL数据库的过程,包括必要的环境准备、安装步骤、配置优化及安全设置等内容。 ... [详细]
author-avatar
木目心磊_559
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有