Public GameObject spawnObject;
void Update ()
{
DragObject (spawnObject);
}
void DragObject (GameObject item)
{
if ( input.GetMouseButtonDown ())
{
Vector3 pos = input.mousePosition;
if (theItem == null)
{
GameObject theItem = Instantiate (item, pos, new Quaternion (0f, 0f, 0f, 0f)) as GameObject;
}
if (theItem != null)
{
theItem.transform.position = pos;
}
}
}
它会引发错误
警告:mysqli_connect():( HY000 / 1045):拒绝用户访问 '' @'本地主机' (使用密码:NO)in 第8行的/usr/www/cozycow/public/trade/includes/db_connect.php
答案 0 :(得分:0)
您的用户名或密码似乎不正确。您可以使用相同的用户名和密码使用phpMyAdmin等数据库管理软件来访问您的数据库吗?