
RawFormula
50
Posts
3
Topics
18
Followers
3
Following
A member registered Jan 04, 2016 · View creator page →
Creator of
Recent community posts
itch.io Community » Creativity & Art » 3D Art · Posted in [3D] [3D DESIGNER] [low-poly] 3D Artist Looking for Indie Project to Join
sorry I dont use discord
here's some work of my:
https://payhip.com/rawmedia/collection/all
what kinda genre are you interested in? would you look at it like you part of the team for a game - maybe you do own version in an engine?
I have a couple ideas (that why genre is important)
in my view the setting/look and story is important. setting for game environment, story for character design and audio.
-- simple ideas (all with physics):
- Truck racing in desert, Boat racing on ocean, Taxi driving in city (tech not yet ready)
-- a scene from a movie - reproducing in game (but no copy, reimagining, no IPs). not gonna talk about it in public which scenes
-- story game around a character: shark hunter. guerilla soldier. gang biker. hitman.
-- and mi have mi own IP, sumo stuntmen
itch.io Community » Creativity & Art » 3D Art · Posted in Can someone help? (making a 3d model for a horror game.)
🎮 How To Use
-
Select a Mesh object in the scene
-
Open
Tools → Simple Mesh Modifier -
Set Selection Radius
-
Click Select Vertices by Radius
-
Adjust Scale
-
Click Scale Selected Vertices
Red dots show selected vertices in Scene View.
using UnityEngine;
using UnityEditor;
using System.Collections.Generic;
public class SimpleMeshModifier : EditorWindow
{
GameObject targetObject;
Mesh mesh;
Vector3[] vertices;
float selectionRadius = 0.5f;
Vector3 scale = Vector3.one * 1.2f;
List<int> selectedVertices = new List<int>();
[MenuItem("Tools/Simple Mesh Modifier")]
static void Open()
{
GetWindow<SimpleMeshModifier>("Mesh Modifier");
}
void OnGUI()
{
GUILayout.Label("Simple Mesh Modifier", EditorStyles.boldLabel);
targetObject = (GameObject)EditorGUILayout.ObjectField(
"Target Object",
targetObject,
typeof(GameObject),
true
);
selectionRadius = EditorGUILayout.FloatField("Selection Radius", selectionRadius);
scale = EditorGUILayout.Vector3Field("Scale", scale);
if (GUILayout.Button("Select Vertices by Radius"))
{
SelectVertices();
}
if (GUILayout.Button("Scale Selected Vertices"))
{
ScaleVertices();
}
GUILayout.Label($"Selected Vertices: {selectedVertices.Count}");
}
void SelectVertices()
{
selectedVertices.Clear();
if (!ValidateMesh()) return;
Vector3 center = targetObject.transform.position;
for (int i = 0; i < vertices.Length; i++)
{
Vector3 worldPos = targetObject.transform.TransformPoint(vertices[i]);
if (Vector3.Distance(worldPos, center) <= selectionRadius)
{
selectedVertices.Add(i);
}
}
SceneView.RepaintAll();
}
void ScaleVertices()
{
if (!ValidateMesh() || selectedVertices.Count == 0) return;
Undo.RecordObject(mesh, "Scale Vertices");
Vector3 center = Vector3.zero;
foreach (int i in selectedVertices)
center += vertices[i];
center /= selectedVertices.Count;
foreach (int i in selectedVertices)
{
Vector3 dir = vertices[i] - center;
vertices[i] = center + Vector3.Scale(dir, scale);
}
mesh.vertices = vertices;
mesh.RecalculateNormals();
mesh.RecalculateBounds();
EditorUtility.SetDirty(mesh);
}
bool ValidateMesh()
{
if (!targetObject) return false;
MeshFilter mf = targetObject.GetComponent<MeshFilter>();
if (!mf || !mf.sharedMesh) return false;
// Duplicate mesh so original asset is not modified
mesh = Instantiate(mf.sharedMesh);
mf.sharedMesh = mesh;
vertices = mesh.vertices;
return true;
}
void OnSceneGUI(SceneView sceneView)
{
if (!targetObject || vertices == null) return;
Handles.color = Color.red;
foreach (int i in selectedVertices)
{
Vector3 worldPos = targetObject.transform.TransformPoint(vertices[i]);
Handles.SphereHandleCap(
0,
worldPos,
Quaternion.identity,
0.02f,
EventType.Repaint
);
}
}
void OnEnable()
{
SceneView.duringSceneGui += OnSceneGUI;
}
void OnDisable()
{
SceneView.duringSceneGui -= OnSceneGUI;
}
}
itch.io Community » Game Development » General Development · Created a new topic unity3D system plug-ins
itch.io Community » Game Development » General Development · Posted in What do indie devs actually think about AI game creation tools? Calling the community !
itch.io Community » Game Development » General Development · Replied to No Time To Play in Got an idea for a game?
itch.io Community » Game Development » General Development · Created a new topic Got an idea for a game?
itch.io Community » Creativity & Art » 3D Art · Created a new topic characters you can easily re-create
with new ai tools you can relatively easily create new variations, modifications to mesh, texture , animations, sounds etc
game actors / npcs like these for crime/cop/tourist/roleplay/urban/adventure games
of course generation will have errors, and it's not straighforward (sometime impossible, not worth the effort) from an imperfect representation to get usable in-game character model

itch.io Community » Game Development » General Development · Posted in Horror idea: Escape room where you’re being watched, not chased
Dynamic Bone Chain Physics for Unity3D comments · Posted in Dynamic Bone Chain Physics for Unity3D comments
itch.io Community » Creativity & Art » 3D Art · Posted in What if we talk about Meshy for 3D creations?




































































































































































































