|
614 | 614 | }, |
615 | 615 | "MonoBehaviour OnMouseDown": { |
616 | 616 | "prefix": "OnMouseDown", |
617 | | - "description": "OnMouseDown is called when the user has pressed the mouse button while over the GUIElement or Collider.", |
| 617 | + "description": "OnMouseDown is called when the user has pressed the mouse button while over the Collider.", |
618 | 618 | "body": [ |
619 | 619 | "/// <summary>", |
620 | 620 | "/// OnMouseDown is called when the user has pressed the mouse button while", |
621 | | - "/// over the GUIElement or Collider.", |
| 621 | + "/// over the Collider.", |
622 | 622 | "/// </summary>", |
623 | 623 | "private void OnMouseDown()", |
624 | 624 | "{", |
|
628 | 628 | }, |
629 | 629 | "MonoBehaviour OnMouseDrag": { |
630 | 630 | "prefix": "OnMouseDrag", |
631 | | - "description": "OnMouseDrag is called when the user has clicked on a GUIElement or Collider and is still holding down the mouse.", |
| 631 | + "description": "OnMouseDrag is called when the user has clicked on a Collider and is still holding down the mouse.", |
632 | 632 | "body": [ |
633 | 633 | "/// <summary>", |
634 | | - "/// OnMouseDrag is called when the user has clicked on a GUIElement or Collider", |
| 634 | + "/// OnMouseDrag is called when the user has clicked on a Collider", |
635 | 635 | "/// and is still holding down the mouse.", |
636 | 636 | "/// </summary>", |
637 | 637 | "private void OnMouseDrag()", |
|
642 | 642 | }, |
643 | 643 | "MonoBehaviour OnMouseEnter": { |
644 | 644 | "prefix": "OnMouseEnter", |
645 | | - "description": "Called when the mouse enters the GUIElement or Collider.", |
| 645 | + "description": "Called when the mouse enters the Collider.", |
646 | 646 | "body": [ |
647 | 647 | "/// <summary>", |
648 | | - "/// Called when the mouse enters the GUIElement or Collider.", |
| 648 | + "/// Called when the mouse enters the Collider.", |
649 | 649 | "/// </summary>", |
650 | 650 | "private void OnMouseEnter()", |
651 | 651 | "{", |
|
655 | 655 | }, |
656 | 656 | "MonoBehaviour OnMouseExit": { |
657 | 657 | "prefix": "OnMouseExit", |
658 | | - "description": "Called when the mouse is not any longer over the GUIElement or Collider.", |
| 658 | + "description": "Called when the mouse is not any longer over the Collider.", |
659 | 659 | "body": [ |
660 | 660 | "/// <summary>", |
661 | | - "/// Called when the mouse is not any longer over the GUIElement or Collider.", |
| 661 | + "/// Called when the mouse is not any longer over the Collider.", |
662 | 662 | "/// </summary>", |
663 | 663 | "private void OnMouseExit()", |
664 | 664 | "{", |
|
668 | 668 | }, |
669 | 669 | "MonoBehaviour OnMouseOver": { |
670 | 670 | "prefix": "OnMouseOver", |
671 | | - "description": "Called every frame while the mouse is over the GUIElement or Collider.", |
| 671 | + "description": "Called every frame while the mouse is over the Collider.", |
672 | 672 | "body": [ |
673 | 673 | "/// <summary>", |
674 | | - "/// Called every frame while the mouse is over the GUIElement or Collider.", |
| 674 | + "/// Called every frame while the mouse is over the Collider.", |
675 | 675 | "/// </summary>", |
676 | 676 | "private void OnMouseOver()", |
677 | 677 | "{", |
|
681 | 681 | }, |
682 | 682 | "MonoBehaviour OnMouseUp": { |
683 | 683 | "prefix": "OnMouseUp", |
684 | | - "description": "OnMouseUp is called when the user has released the mouse button.", |
| 684 | + "description": "OnMouseUp is called when the user has released the mouse button over the Collider.", |
685 | 685 | "body": [ |
686 | 686 | "/// <summary>", |
687 | | - "/// OnMouseUp is called when the user has released the mouse button.", |
| 687 | + "/// OnMouseUp is called when the user has released the mouse button over the Collider.", |
688 | 688 | "/// </summary>", |
689 | 689 | "private void OnMouseUp()", |
690 | 690 | "{", |
|
694 | 694 | }, |
695 | 695 | "MonoBehaviour OnMouseUpAsButton": { |
696 | 696 | "prefix": "OnMouseUpAsButton", |
697 | | - "description": "OnMouseUpAsButton is only called when the mouse is released over the same GUIElement or Collider as it was pressed.", |
| 697 | + "description": "OnMouseUpAsButton is only called when the mouse is released over the same Collider as it was pressed.", |
698 | 698 | "body": [ |
699 | 699 | "/// <summary>", |
700 | 700 | "/// OnMouseUpAsButton is only called when the mouse is released over", |
701 | | - "/// the same GUIElement or Collider as it was pressed.", |
| 701 | + "/// the same Collider as it was pressed.", |
702 | 702 | "/// </summary>", |
703 | 703 | "private void OnMouseUpAsButton()", |
704 | 704 | "{", |
|
0 commit comments