This script will simply add a MRT card to the first recognized right hand with a pinch motion detected. First linking the MRT card game object: public GameObject MrtCard; Secondly,…
There are few information required to start the simulation The Line which the train is on: North East line, North South Line and Changi Line The Direction which the train…
Creating input and submit through ajax to processing php and return back the value: For HTML: <b>Step 1. </b>Indicate your preferred hourly Rate: <div class="input-group"> <span class="input-group-addon">$</span> <input type="text" id="hrRate"…
Ajax allows updating server information without reloading the page. In this case, will be setting up a HTML select and display information specific to the selected option after ajax function…
Converting following array to the one below: $query1 = "SELECT skills.Title FROM skills INNER JOIN member_has_skills ON member_has_skills.skills_Skill_id = skills.Skill_id WHERE member_has_skills.member_Member_id='$memberid_esc'"; $memberskills = $db->readQuery($query1); //First array is what is…
Method 1 PlayerPrefs Basic way to keep data from scene to scene: Easy to use, but not secure nor fast. Method 2 DontDestroyOnLoad(gameObject); The other way is to create a…
Trying to simulate the MRT train announcement display. Firstly we can look for the same font. PICA HOLE ABS Using Photoshop, create a texture: Save the texture…
There are few parts to this system: Display Comments Enter Comments AJAX Submit to PHP file Create Database to store Comments PHP file update database and return to AJAX Connect…
example of variable: private int experience example of property: public int Experience { get{ return experience; } set{ experience = value; } } Reason for using the property: use for…
The new MECANIM can be used to control animations. I have two set of animator setup. The LeftGate ani contains leftDoorOpen and leftDoorClose animations similarly, the RightGate ani contains rightDoorClose…