Skip to content

Instantly share code, notes, and snippets.

@gmirmand
gmirmand / unity.md
Last active September 13, 2023 13:21
new unity pricing simulation

Voici une estimation des revenus en fonction des coûts.

1. Jeu gratuit avec skin payant:

Supposons que 10% des joueurs achètent des skins et que le prix moyen d'un skin est de 1€.

a) Unity Personal et Unity Plus:

  • Court terme (50 000 nouvelles installations par mois) :
  • Coût : 50,000 installs x $0.20/install = $10,000 par mois.
@gmirmand
gmirmand / Column mixin
Last active August 1, 2018 15:04
A mixin removing margins on the sides & allowing responsive adaptivity
@mixin columnReset($columnnb, $margewidth : 15px){
&:nth-child(#{$columnnb}n+1) {
margin-left: $margewidth;
}
&:nth-child(#{$columnnb}n+#{$columnnb}){
margin-right: $margewidth;
}
}
// Call this mixin like :