附加脚本的使用

作者:追风剑情 发布于:2019-9-20 17:38 分类:LayaAir

一、新建MyDialog.scene 拖一个登录界面 给需要在代码中访问的组件取个名字 二、新建MyDialog.ts 整个工程结构 MyDialog.ts export default class MyDialog extends Laya.S...

阅读全文>>

标签: LayaAir

评论(0) 浏览(3911)

通过键盘ASDW控制物体移动

作者:追风剑情 发布于:2019-9-19 21:06 分类:Unity3d

示例 using System.Collections; using System.Collections.Generic; using UnityEngine; /// <summary> /// 挂在需要移动的物体上 /// </summary> public class MoveController : MonoBehaviour { ...

阅读全文>>

标签: Unity3d

评论(0) 浏览(4044)

Kinect

作者:追风剑情 发布于:2019-9-19 13:11 分类:Unity3d

官方文档 Xbox NUI Camera Drivers Download Microsoft WDF KinectSensor Interface Driver Kinect-v2 Examples with MS-SDK(译文二) Kinect-v2 Examples with MS-SDK Doc(Chinese documents) Kinect驱动安装目录 ...

阅读全文>>

标签: Unity3d

评论(0) 浏览(8421)

C语言—函数

作者:追风剑情 发布于:2019-9-16 20:47 分类:C

示例一:一个简单函数 //Visual Studio中加上这句才可以使用scanf() //否则只能使用scanf_s() #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdbool.h> #define NAME "GIGATHINK, INC." #define ADDR...

阅读全文>>

标签: C语言

评论(0) 浏览(3573)

一个简易聊天室

作者:追风剑情 发布于:2019-9-16 15:39 分类:C#

一、工程结构 配置条件编译: [生成]->[配置管理器] 二、代码 UniNetwork.cs using System; using System.Collections.Generic; using System.Net.Sockets; using System.IO; /// <...

阅读全文>>

标签: C#

评论(0) 浏览(4428)

C语言—菜单浏览

作者:追风剑情 发布于:2019-9-11 21:15 分类:C

示例:菜单小程序 //Visual Studio中加上这句才可以使用scanf() //否则只能使用scanf_s() #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdbool.h> char get_choice(void); char get_first(void)...

阅读全文>>

标签: C语言

评论(0) 浏览(2940)

离线安装Visual Studio 2017

作者:追风剑情 发布于:2019-9-9 11:15 分类:C#

参考 https://blog.csdn.net/hellkyle/article/details/80759961 以社区版为例: 1、下载vs_Community.exe (官方下载) 2、下载VS2017离线安装包 (西西软件下载),文件比较大,推荐使用PanDownload工具下载 3、依次安装证书(一直点下一步即可) ...

阅读全文>>

标签: C#

评论(0) 浏览(3286)

单字符I/O: getchar()和putchar()

作者:追风剑情 发布于:2019-9-5 21:27 分类:C

//Visual Studio中加上这句才可以使用scanf() //否则只能使用scanf_s() #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdbool.h> // 验证输入是一个整数 long get_long(void); // 验证范围的上下限是否有效 bool ...

阅读全文>>

标签: C语言

评论(0) 浏览(3600)

WPF—DataTemplate

作者:追风剑情 发布于:2019-9-2 16:48 分类:C#

示例 MainWindow.xaml <Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas...

阅读全文>>

标签: C#

评论(0) 浏览(2966)

触控旋转及缩放模型

作者:追风剑情 发布于:2019-8-30 17:06 分类:LayaAir

示例:直接在官方示例上改的 import { ui } from "./../ui/layaMaxUI"; /** * 本示例采用非脚本的方式实现,而使用继承页面基类,实现页面逻辑。在IDE里面设置场景的Runtime属性即可和场景进行关联 * 相比脚本方式,继承式页面类,可以直接使用页面定义的属性(通过IDE内var属性定义),比如this.tipLbll,this.scor...

阅读全文>>

标签: LayaAir

评论(0) 浏览(4965)

Unity Tiny

作者:追风剑情 发布于:2019-8-28 14:01 分类:Unity3d

以下教程使用的Unity2018.3.14f Tiny用于发布HTML5项目 官方文档  tiny-0.13   tiny-0.14   tiny-0.15 一、安装Tiny 二、导入官方Demo 三、运行Demo->BasicW...

阅读全文>>

标签: Unity3d

评论(0) 浏览(4325)

WPF—Style实现继承

作者:追风剑情 发布于:2019-8-27 16:14 分类:C#

示例 <Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/express...

阅读全文>>

标签: C#

评论(0) 浏览(2949)

WPF—ControlTemplate

作者:追风剑情 发布于:2019-8-27 14:19 分类:C#

示例 <Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/express...

阅读全文>>

标签: C#

评论(0) 浏览(3709)

WPF—模板Template

作者:追风剑情 发布于:2019-8-27 12:16 分类:C#

示例:渐变按钮 <Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/ex...

阅读全文>>

标签: C#

评论(0) 浏览(3654)

WPF—定义Style

作者:追风剑情 发布于:2019-8-27 10:41 分类:C#

MainWindow.xaml <Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://sche...

阅读全文>>

标签: C#

评论(0) 浏览(3269)

TCP解包与封包

作者:追风剑情 发布于:2019-8-26 16:32 分类:C#

示例 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TestConsole { class Program { static void Main(strin...

阅读全文>>

标签: C#

评论(0) 浏览(4047)

TcpClient

作者:追风剑情 发布于:2019-8-26 11:57 分类:C#

示例:聊天室 服务端代码 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using System.Threading; using System.Net; using System.Net.So...

阅读全文>>

标签: C#

评论(0) 浏览(3734)

WPF—数据双向绑定

作者:追风剑情 发布于:2019-8-23 18:29 分类:C#

MainWindow.xaml <Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schema...

阅读全文>>

标签: C#

评论(0) 浏览(4769)

C语言—文件操作

作者:追风剑情 发布于:2019-8-22 15:33 分类:C

示例一:向文件中写入字符串 #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> int main(void) { FILE *fp; //打开文件,如果文件不存在,则自动创建 if ((fp = fopen("D:\\demo.txt", "at+")) == NULL) { puts("Fail ...

阅读全文>>

标签: C语言

评论(0) 浏览(2823)

WPF—DispatcherTimer

作者:追风剑情 发布于:2019-8-20 21:55 分类:C#

示例 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Window...

阅读全文>>

标签: C#

评论(0) 浏览(2866)

WPF—截屏

作者:追风剑情 发布于:2019-8-20 17:01 分类:C#

示例 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Window...

阅读全文>>

标签: C#

评论(0) 浏览(3633)

Task.Delay()

作者:追风剑情 发布于:2019-8-20 11:00 分类:C#

示例 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Window...

阅读全文>>

标签: C#

评论(0) 浏览(2549)

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号