virtualx-engine/demos/3d/mousepick_test/mousepick.gd
Rémi Verschelde 8639cecf4c Improve code formatting and update to 2.0
The scripts were streamlined using more or less the following conventions:
 - space after a comma in lists of arguments
 - space around weak operators (+, -), no space around strong operators (*, /)
 - space after a comment start (#)
 - removed trailing spaces or tabs, apart from those that delimit the function indentation level (those could be removed too but since they are added automatically by the editor when typing code, keeping them for now)
 - function blocks separate by two newlines

The scene files were resaved with the (current) 2.0 format, and some scenes that were in XML format were converted to SCN, to be consistent across all demos.
2015-12-09 08:38:23 +01:00

24 lines
511 B
GDScript

extends RigidBody
# member variables
var gray_mat = FixedMaterial.new()
var selected=false
func _input_event(camera, event, pos, normal, shape):
if (event.type==InputEvent.MOUSE_BUTTON and event.pressed):
if (not selected):
get_node("mesh").set_material_override(gray_mat)
else:
get_node("mesh").set_material_override(null)
selected = not selected
func _mouse_enter():
get_node("mesh").set_scale(Vector3(1.1, 1.1, 1.1))
func _mouse_exit():
get_node("mesh").set_scale(Vector3(1, 1, 1))