Home  /  Tools Apps  / GUI Marker for SD Unity-chan on Windows Pc

GUI Marker for SD Unity-chan on Windows Pc

Developed By: RapidNack.com

License: Free

Rating: 5,0/5 - 1 votes

Last Updated: December 26, 2023

Download on Windows PC

Compatible with Windows 10/11 PC & Laptop

App Details

Version 1.2.4
Size 34.3 MB
Release Date June 10, 18
Category Tools Apps

App Permissions:
Allows applications to discover and pair bluetooth devices. [see more (4)]

What's New:
Changed to save contents when exiting edit mode [see more]

Description from Developer:
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]... [read more]

App preview ([see all 6 screenshots])

App preview

About this app

On this page you can download GUI Marker for SD Unity-chan and install on Windows PC. GUI Marker for SD Unity-chan is free Tools app, developed by RapidNack.com. Latest version of GUI Marker for SD Unity-chan is 1.2.4, was released on 2018-06-10 (updated on 2023-12-26). Estimated number of the downloads is more than 10. Overall rating of GUI Marker for SD Unity-chan is 5,0. Generally most of the top apps on Android Store have rating of 4+. This app had been rated by 1 users, 1 users had rated it 5*, 1 users had rated it 1*.

How to install GUI Marker for SD Unity-chan on Windows?

Instruction on how to install GUI Marker for SD Unity-chan on Windows 10 Windows 11 PC & Laptop

In this post, I am going to show you how to install GUI Marker for SD Unity-chan on Windows PC by using Android App Player such as BlueStacks, LDPlayer, Nox, KOPlayer, ...

Before you start, you will need to download the APK/XAPK installer file, you can find download button on top of this page. Save it to easy-to-find location.

[Note] You can also download older versions of this app on bottom of this page.

Below you will find a detailed step-by-step guide, but I want to give you a fast overview of how it works. All you need is an emulator that will emulate an Android device on your Windows PC and then you can install applications and use it - you see you're playing it on Android, but this runs not on a smartphone or tablet, it runs on a PC.

If this doesn't work on your PC, or you cannot install, comment here and we will help you!

Step By Step Guide To Install GUI Marker for SD Unity-chan using BlueStacks

  1. Download and Install BlueStacks at: https://www.bluestacks.com. The installation procedure is quite simple. After successful installation, open the Bluestacks emulator. It may take some time to load the Bluestacks app initially. Once it is opened, you should be able to see the Home screen of Bluestacks.
  2. Open the APK/XAPK file: Double-click the APK/XAPK file to launch BlueStacks and install the application. If your APK/XAPK file doesn't automatically open BlueStacks, right-click on it and select Open with... Browse to the BlueStacks. You can also drag-and-drop the APK/XAPK file onto the BlueStacks home screen
  3. Once installed, click "GUI Marker for SD Unity-chan" icon on the home screen to start using, it'll work like a charm :D

[Note 1] For better performance and compatibility, choose BlueStacks 5 Nougat 64-bit read more

[Note 2] about Bluetooth: At the moment, support for Bluetooth is not available on BlueStacks. Hence, apps that require control of Bluetooth may not work on BlueStacks.

How to install GUI Marker for SD Unity-chan on Windows PC using NoxPlayer

  1. Download & Install NoxPlayer at: https://www.bignox.com. The installation is easy to carry out.
  2. Drag the APK/XAPK file to the NoxPlayer interface and drop it to install
  3. The installation process will take place quickly. After successful installation, you can find "GUI Marker for SD Unity-chan" on the home screen of NoxPlayer, just click to open it.

Discussion

(*) is required

Download older versions

Other versions available: 1.2.4.

Download GUI Marker for SD Unity-chan 1.2.4 on Windows PC – 34.3 MB

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')
Changed to save contents when exiting edit mode
Allows applications to discover and pair bluetooth devices.
Allows applications to connect to paired bluetooth devices.
Allows applications to open network sockets.
Allows applications to access information about networks.