Câu hỏi được gắn thẻ «coroutines»

1
Điều gì là sai với coroutine hồi sinh của tôi?
Tôi đang tạo một trò chơi 2D Platformer trong đó nếu người chơi rơi khỏi căn cứ / mặt đất thì tôi muốn người chơi hồi sinh ở trạm kiểm soát gần nhất. Tuy nhiên tôi muốn có một sự chậm trễ giữa người chơi rơi xuống đất và hồi …
19 unity  coroutines 


5
Tại sao tôi không thể sử dụng toán tử '> =' với Vector3?
Tôi đang cố gắng để có được một hình chữ nhật để di chuyển giữa hai vị trí mà tôi gọi là _positionAvà _positionB. Cả hai đều thuộc loại Vector3. Các hình chữ nhật di chuyển tốt. Tuy nhiên, khi nó đạt đến _positionBnó không di chuyển theo hướng ngược …
9 unity  c#  vector  mathematics  vector  matrix  unity  c#  transformation  java  3d  terrain-rendering  shading  ios  opengl-es  opengl  rendering  optimization  python  scripting  minecraft-modding  modding  pc  3d-meshes  mesh  culling  point-cloud  networking  interpolation  mathematics  game-design  ai  game-mechanics  animation  unreal-4  skeletal-animation  3dsmax  unity  c#  3d  opengl  c++  textures  unity  ide  cocos2d  cocos2d-x-js  unity  c#  mono  il2cpp  c++  game-loop  timer  linux  flash  actionscript-3  java  glsl  c++  vector  entity-component  c++  directx11  windows  visual-studio  libgdx  mouse  unity  c#  architecture  storage  unity  c#  rotation  coordinates  quaternion  vrpn  movement  vector  unreal-4  unity  shaders  unity  gui  text  bug  shooter  3d  animation  rendering  voxels  c++  mmo  multithreading  linux  textures  procedural-generation  terrain-rendering  multiplayer  mmo  game-state  java  android  libgdx  opengl  procedural-generation  unity  gui  3d  animation  tools  geometry-shader  mobile  advertisements  unity  c#  animation  scripting  unity  animation  unityscript  coroutines  unity  shaders  lighting  camera 

6
Tại sao tôi không bị kẹt trong vòng lặp
Tôi mới đến Unity. Tôi đã học coroutines và tôi đã viết này. private void Fire() { if(Input.GetButtonDown("Fire1")) { StartCoroutine(FireContinuously()); } if(Input.GetButtonUp("Fire1")) { StopAllCoroutines(); } } IEnumerator FireContinuously() { while(true) { GameObject laser = Instantiate(LaserPrefab, transform.position, Quaternion.identity) as GameObject; laser.GetComponent<Rigidbody2D>().velocity = new Vector2(0, 10f); yield return new WaitForSeconds(firetime); } } …
8 unity  c#  coroutines 
Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.