摘要:
using UnityEngine; using System.Collections; public class mouseCursor : MonoBehaviour { /// /// 变换样式 /// public Texture2D cursorTexture; /// /// 默认鼠标样式 /// public... 阅读全文
摘要:
1 //设置地图边界:1:创建一个类 Boundary(边界) 2 public class Boundary 3 { 4 public float xMin; 5 public float xMax; 6 public float zMin; 7 public float zMax; 8 ... 阅读全文
摘要:
笔记 DELETE a,b FROM 表1 a, 表2 b WHERE b.mark_id=a.id AND b.id=5 /* a 为表1 的别名, b 为表2的别名 b.mark_id mark_id 为b(表2)里的主键 b.id id 是表1 的主键 a. id id为a(表1)里的主键 b 阅读全文