Noname Games https://noname-games.com/blog Indie game studio Wed, 28 Oct 2020 12:39:37 +0000 en-US hourly 1 https://wordpress.org/?v=5.2.1 Building “Sheikah Slate” from The Legend of Zelda : Breath of the Wild https://noname-games.com/blog/building-sheikah-slate-from-the-legend-of-zelda-breath-of-the-wild/ Thu, 28 Jul 2016 16:55:20 +0000 http://noname-games.com/blog/?p=204

Read more ›

]]>
 

 

 

 

1st step : Speed modeling, creating the Sheikah Slate using 3ds Max

 

 

2nd step : Printing 3D model

Once the model done, we print it in 4 parts.

 

Parts

 

f25bd218-1306-4e54-8b84-26394d207704

 

Assembly

 

88d9111e-4f99-4ce0-b93c-59be40422a7b

 

Printer: Velleman K8400
Material: PLA
Layer: 100 microns

3rd step : Painting the Sheikah Slate

 

 

 

Here are links to print you own :

picture-68050-1432611623

cgtrader_logo

images

 

 

 

 

sheikah_slate_render_by_emanon01-da8zk9h

]]>
Unity: How to track number of days in game https://noname-games.com/blog/unity-how-to-track-number-of-days-in-game/ Sat, 09 Jul 2016 14:45:08 +0000 http://noname-games.com/blog/?p=193

void Awake() {
        if (!GameSettings.hasLaunched)
        {
            GameSettings.hasLaunched = true;
            if (PlayerPrefs.GetString("last_launch", "") == "")
            {
                // first launch
                PlayerPrefs.SetString("last_launch", DateTime.Today.ToShortDateString());
                PlayerPrefs.SetInt("number_of_launch", 1);
            }
            else
            {
                if (PlayerPrefs.GetString("last_launch", "") != DateTime.Today.ToShortDateString())
                {
                    GameSettings.newDay = true;
                    PlayerPrefs.SetInt("number_of_launch", PlayerPrefs.GetInt("number_of_launch") + 1);
                }
                PlayerPrefs.SetString("last_launch", DateTime.Today.ToShortDateString());
            }
            PlayerPrefs.Save();
        }
}
if (GameSettings.newDay && PlayerPrefs.GetInt("number_of_launch") > 3)
{
	GameSettings.newDay = false;
	GameSettings.coins += 10;
	PlayerPrefs.SetInt("coins", GameSettings.coins);
	PlayerPrefs.Save();
	Snowman.instance.message("+ 10 coin");
}
]]>
Gameplay Drop #2 https://noname-games.com/blog/gameplay-drop-2/ Tue, 07 Jun 2016 19:52:14 +0000 http://noname-games.com/blog/?p=184

]]>
Android/Unity debug tips : Wireless ADB Debugging https://noname-games.com/blog/androidunity-debug-tips-wireless-adb-debugging/ Tue, 19 Apr 2016 16:20:23 +0000 http://noname-games.com/blog/?p=141

Read more ›

]]>
 

After years of debugging with cable I decided to find another method since I have only one USB-C cable with my phone (Mi-4c).

Here’s how I push my Unity game to my phone, this can be used by any other Android developement platform.

1 – Download WiFi ADB


“WiFi ADB – Debug Over Air”
It requires root but you can find other that don’t require it (I don’t try other apps).

2 – Connect ADB to your phone

Note that you need WiFi enabled on your smartphone and your PC needs to be in the same network as well.

Launch the command line “adb connect 192.168.X.X:5555” in your batch/powershell or use this script :

 


$ip = Read-Host "End of IP ?"
cd "C:\Program Files (x86)\Android\android-sdk\platform-tools"
$cmd = ".\adb connect 192.168.1." + $ip + ":5555"
Write-Debug $cmd
Invoke-Expression $cmd
Pause

Note : You may need to change the beggining of the IP in the script

connectADB.ps1

Then Right click/Run with PowerShell

push

3 – Enjoy !

You can push your games using ADB

push

 

If you have time you can write your own scanner to find the good IP or use a fixed IP Address for your smartphone setted by MAC or any other method in your router for example.

Feel free to improve the script 🙂

Good coding

]]>
Gameplay Drop #1 https://noname-games.com/blog/gameplay-drop-1-2/ Mon, 11 Apr 2016 21:32:42 +0000 http://noname-games.com/blog/?p=106
We are currently working on our next game, Drop.

The idea has been found in august 2013, after 3 prototypes, here is the first video of the game.

]]>
Nintendo NX fake story https://noname-games.com/blog/nintendo-nx-fake-story/ Mon, 11 Apr 2016 20:03:59 +0000 http://noname-games.com/blog/?p=72

Read more ›

]]>
You are maybe not aware of the story but a fake of the next Nintendo console aka “Nintendo NX” appeared on Internet less than a month ago, we will tell you the whole story as we are behind it.

All started march the 17 were an image by us appeared on Reddit:

1ereimage

Then a second image appeared on Reddit by an unknown source :

2emeimage

You can noticed that on both images, an adhesive is present on the console.

At first, David here at Noname Games (Idriss2Dev on Reddit) thinked about making a video with a 3d printed version of the fake in which removing the adhesive, the word “FAKE” would have been discovered behind. So that a new image (By Frank Sandqvist) was released we decided to make reveal video that it was a fake.

Video:

After it was revealed as fake, the guy who created the 2nd fake made a making of:

Funny reactions then appeared:

LwdiSnM
Gs33UUE
JQiGSJd
Cdy3cXaW4AAGxUd
TfgROCG
8lR41kk
yN8fwIW
qJXSeXZ

At first we didn’t thought that much reactions. Initially the console would have been put on David’s DeviantArt.

Render of the fake :

codename__nx__off_by_emanon01-d9wfzab

Download the model for 3D print
18c865fe-6047-46c4-944d-1833200ecef5

NeoGAF topics :

1st topic on NeoGAF
2nd topic on NeoGAF
3rd topic on NeoGAF
Interview by Gameblog (French)

Interview by IGN France (French)

]]>
Save snowman released ! https://noname-games.com/blog/save-snowman-released/ Fri, 01 Jan 2016 18:39:09 +0000 http://noname-games.com/blog/?p=68

Read more ›

]]>
Merry christmas and happy new year !

This year, Santa comes with a new game in his sack, Save snowman.

save_snowman

Available now on Google play, it will be on iOS soon.

Save snowman is a FPS, it’s also kind of Tower defense. The goal of the game, defend your snowman against bad snowmen.

The snowman that you have to save is customizable:
customize

In-game screenshots:
screen

iceworld

304_1082700511780199_9050373078328802019_n

Video:

]]>
Apocalypse’s update : New multiplayer mode https://noname-games.com/blog/apocalypses-update-new-multiplayer-mode/ Wed, 19 Aug 2015 22:27:06 +0000 http://noname-games.com/blog/?p=59 The new multiplayer mode of Apocalypse is now available.

This time it’s realtime, you can see your own ranking right in-game. For the time, David is 1st and Anat 4th, come beat us 😉

screen_apo

]]>
Apocalypse released https://noname-games.com/blog/apocalypse-released/ Fri, 21 Dec 2012 22:59:23 +0000 http://noname-games.com/blog/?p=51 apocalypse_poster

Our first game is now available on Google Play and App Store

App Store Link
Google Play Link

]]>