GUI Marker for SD Unity-chan Apk

GUI Marker for SD Unity-chan Apk

Latest version 1.2.4
10 Jun 2018

Older Versions

Apk Infos

Version1.2.4
Rating5.0/5, based on 1 votes
Size‎34.3 MB
Requires AndroidAndroid 4.1+ (Jelly Bean)
Author's NotesBy writing 3D objects in Python, you can create simple games.

About GUI Marker for SD Unity-chan APK

GUI Marker for SD Unity-chan APK Download for Android
GUI Marker for SD Unity-chan APK Download for Android

Description

Unity3D tutorial "Roll-a-ball" can be described in Python as follows.

Create walls

Camera.Reset()
Player.Reset()
Player.Rotate(0, 180, 0)
Objects.Clear()
 
Objects[100].Type = 'cube'
Objects[100].Position = (0.5, 0.5, 9.5)
Objects[100].Scale = (19, 1, 1)
Objects[100].RGBA = (240, 176, 176, 255)
Objects[101].Copy(Objects[100])
Objects[101].Position = (-0.5, 0.5, -9.5)
Objects[102].Copy(Objects[100])
Objects[102].Position = (-9.5, 0.5, 0.5)
Objects[102].Rotation = (0, 90, 0)
Objects[103].Copy(Objects[102])
Objects[103].Position = (9.5, 0.5, -0.5)

Tracking player

Camera.Target = Player

Add Item objects

n = 6
for i in range(n):
    t = i * (360 / n)
    rad = math.pi * (t / 180.0)
    x = math.cos(rad)
    z = math.sin(rad)
    #print t, x, z
    Objects[200 + i].Type = 'capsule'
    UpdateScore()
    Objects[200 + i].Color = 0x00ff00ff
    Objects[200 + i].Position = (x * 5, 1, z * 5)
    Objects[200 + i].Scale = (0.5, 0.5, 0.5)
    Objects[200 + i].IsTrigger = True
    Objects[200 + i].RaiseEvents = True

Delete Item when touching

def triggerEnter(sender, hit):
    print 'triggerEnter', sender, hit
    if hit != Player:
        return
    Particles[1].Type = 6
    Particles[1].Position = sender.Position
    sender.Type = None
    UpdateScore()

Label display

def UpdateScore():
    score = len([1 for x in Objects.All if x.Index / 100 == 2])
    if score == 0:
        Items[2].Text = 'YOU WIN'
    else:
        Items[2].Text = str(score)

Create dangerous walls

Objects[300].Type = 'cube'
Objects[300].Color = 0xff0000ff
Objects[300].Position = (4, 0.5, 2)
Objects[300].Scale = (10, 1, 1)
Objects[300].RaiseEvents = True
Objects[301].Copy(Objects[300])
Objects[301].Position = (4, 0.5, -3)
Objects[302].Copy(Objects[300])
Objects[302].Position = (-4, 0.5, 4)
Objects[302].Rotation = (0, 90, 0)

Collision determination

def collisionEnter(sender, hit):
    print 'collisionEnter', sender, hit
    if hit != Player:
        return
    Player.IsControlled = False
    Player.ChangeFace('eye_close')
    Player.CrossFade('GoDown')

Latest updates

What's new in version 1.2.4

Changed to save contents when exiting edit mode

How to install GUI Marker for SD Unity-chan APK on Android phone or tablet?

Download GUI Marker for SD Unity-chan APK file from ApkClean, then follow these steps:

Update Phone Settings

  • Go to your phone Settings page
  • Tap Security or Applications (varies with device)
  • Check the Unknown Sources box
  • Confirm with OK

Go to Downloads

  • Open Downloads on your device by going to My Files or Files
  • Tap the APK file you downloaded (com.rapidnack.GMforSDUnityChan-v1.2.4-ApkClean.apk)
  • Tap Install when prompted, the APK file you downloaded will be installed on your device.

Older Versions

1.2.4 (5)34.3 MB

Questions & Answers

Q: What is an APK File?

A: Just like Windows (PC) systems use an .exe file for installing software, Android does the same. An APK file is the file format used for installing software on the Android operating system.

Q: If I install an APK from this website, will I be able to update the app from the Play Store?

A: Yes, absolutely. The Play Store installs APKs it downloads from Google's servers, and sideloading from a site like ApkClean.net goes through a very similar process, except you're the one performing the downloading and initiating the installation (sideloading).
As soon as the Play Store finds a version of the app newer than the one you've sideloaded, it will commence an update.

Q: Why ApkClean.net can guarantee APK 100% safe?

A: Whenever someone wants to download an APK file from ApkClean.net, we'll check the corresponding APK file on Google Play and allow user download it directly (of course, we'll cache it on our server). If the APK file does not exist on Google Play, we'll search it in our cache.

Q: What are Android App permissions?

A: Apps require access to certain systems within your device. When you install an application, you are notified of all of the permissions required to run that application.

Don't hesitate to contact us if you have any questions or concerns.

(*) is required

User's Reivew

5 ★Kawaii desu ne