关于Unity的换装,网上有几篇文章,我之前也简单的描述过实现。不过那个时候只是粗略的试验了下。今天好好梳理了下代码。
先上代码(自己的游戏项目,不是公司的,所以放心的贴上项目代码了,部分引用到其他的功能文件,但是核心代码无影响,这里主要看一下细节和思路)
using UnityEngine;
using System.Collections;
using System.Col...
分类:
编程语言 时间:
2015-03-10 21:34:22
阅读次数:
283
思科VSSLicense升级步骤:1、关闭standby所有非VSL端口intrangegigabitethernet2/2/1-12shintrangegigabitethernet2/3/1-12sh2、在active上安装license:licenseinstallbootflash:SPE16220060_201309210212042440.lic3、在active上关闭VSL端口intraTengigabitethernet1/1/2-4sh..
分类:
其他好文 时间:
2015-03-10 19:51:12
阅读次数:
350
一、使用线程的三种基本方法1、扩展Thread类publicclassMythreadextendsThread{publicvoidrun(){System.out.println("拓展thread类");}}//启动线程ThreadmyThread=newThread();MyThread.start();2、实现Runnable接口publicclassMythreadimplementsRunnable{publicMyClass(){Thr..
分类:
编程语言 时间:
2015-03-10 19:43:22
阅读次数:
200
在使用SQLyog连接mysql时报以下错误: ERROR 2013 : Lost connection to MySQL server at 'waiting for initial communication packet', system error: 2 经过其他测试发现账号和密码,teln...
分类:
数据库 时间:
2015-03-10 19:05:52
阅读次数:
151
修改远程桌面端口需要两个步骤: 1、打开注册表 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\Wds\rdpwd\Tds\tcp],修改右边PortNamber的值,其默认值是3389,修改成所希望的端口即....
分类:
其他好文 时间:
2015-03-10 18:51:31
阅读次数:
191
错误分析:[oracle@rusky pfile]$ sqlplus sys/rusky@orcl2 as sysdba;SQL*Plus: Release 10.2.0.1.0 - Production on Tue Mar 10 01:51:24 2015Copyright (c) 1982, ...
分类:
其他好文 时间:
2015-03-10 18:49:49
阅读次数:
174
分布式系统: A distributed system is one in which components located at network computers communicate and coordinate their actions only by passing messages.
由于单机处理能力存在瓶颈,而升级单机处理能力的性价比越来越低,出于稳定性和可用性的考虑,就出现了分布式系统的架构方案。将分布式系统中的一些通用功能提出来形成了中间件,常用的有消息系统,服务框架,数据访问等......
分类:
其他好文 时间:
2015-03-10 17:27:01
阅读次数:
139
Java实现多线程的方法有两种,一是继承Thread类、二是实现Runnable接口。
一、继承Thread类
public class ThreadTest extends Thread {
@Override
public void run() {
System.out.println("this thread name is:"+Thread.cu...
分类:
编程语言 时间:
2015-03-10 17:26:51
阅读次数:
177
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Threading;
namespace 线程进程学习
{
class Program
{
...
分类:
编程语言 时间:
2015-03-10 17:23:57
阅读次数:
149
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Threading;
using System.Web.UI.WebControls;
public partial class muti_thread : S...
分类:
编程语言 时间:
2015-03-10 17:16:02
阅读次数:
135