Modif utilisation générique des IGrabable quand action sans hit
This commit is contained in:
parent
825de9e1b1
commit
ed07f1332e
2 changed files with 11 additions and 13 deletions
|
@ -168,20 +168,13 @@ public class Tavernkeeper_controller : MonoBehaviour
|
|||
}
|
||||
}
|
||||
}
|
||||
else if (hand_container[hand] != null) //Hand full and no hits
|
||||
else if (hand_container[hand] != null) //Hand full and no hits : use object
|
||||
{
|
||||
if (hand_container[hand].tag == "Grabable") //Drop obj carried on player position
|
||||
IGrabable obj = hand_container[hand].GetComponent<IGrabable>();
|
||||
if(obj !=null)
|
||||
{
|
||||
IGrabable obj = hand_container[hand].GetComponent<IGrabable>();
|
||||
if(obj !=null)
|
||||
{
|
||||
obj.drop(rigidbody2d.position);
|
||||
hand_container[hand]=null;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
Debug.Log(gameObject+" doesn't handle Hand full with "+ hand_container[hand]);
|
||||
if(obj.use(gameObject)) //Use object in hand
|
||||
hand_container[hand]=null; //True = object dropped
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue